summaryrefslogtreecommitdiff
path: root/src/lua
diff options
context:
space:
mode:
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;