summaryrefslogtreecommitdiff
path: root/src/lua
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-08-02 11:38:19 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-08-02 11:38:19 +0200
commit04a5a938994ddb95cfaa9a74b180e457d3a2b5d0 (patch)
tree31ce9525ed3f3423678397323b65c910d63eadb1 /src/lua
parentfe0938b1de0c46fc2afcaa3dcd6a0f4ec870d21a (diff)
implement new lua interface
Diffstat (limited to 'src/lua')
-rw-r--r--src/lua/mod.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lua/mod.rs b/src/lua/mod.rs
index fe3555e..7d61e5b 100644
--- a/src/lua/mod.rs
+++ b/src/lua/mod.rs
@@ -6,7 +6,14 @@ use std::{
use lazy_static::lazy_static;
use mlua::prelude::*;
-use crate::{config::{theme::{sheetview::SheetViewTheme, Theme}, GlobalConfig}, sheet::cell::CellRef, state::{sheetview::SheetViewState, GlobalState}};
+use crate::{
+ config::{
+ theme::{sheetview::SheetViewTheme, Theme},
+ GlobalConfig,
+ },
+ sheet::cell::CellRef,
+ state::{view::SheetViewState, GlobalState},
+};
pub mod evalsto;
pub mod iobuffer;