diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-02 00:36:10 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-02 00:36:10 +0200 |
| commit | fe0938b1de0c46fc2afcaa3dcd6a0f4ec870d21a (patch) | |
| tree | 8db7509894842395cfb309f00c41b7f4d173888c /src/config/theme | |
| parent | 1e1eb95926f556e666bc20355327abd24d264858 (diff) | |
add state which is shared with the lua environment
Diffstat (limited to 'src/config/theme')
| -rw-r--r-- | src/config/theme/sheetview.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/config/theme/sheetview.rs b/src/config/theme/sheetview.rs index edc7cc3..bcd53e1 100644 --- a/src/config/theme/sheetview.rs +++ b/src/config/theme/sheetview.rs @@ -1,10 +1,7 @@ use mlua::UserData; use ratatui::style::Color; -use crate::{ - config::{evalsto::EvalTo, GlobalConfig}, - sheet::cell::CellRef, -}; +use crate::{config::GlobalConfig, lua::evalsto::EvalTo, sheet::cell::CellRef}; use super::style::Style; |