diff --git a/src/config.rs b/src/config.rs index 38e89f6..35fe0fb 100644 --- a/src/config.rs +++ b/src/config.rs @@ -86,7 +86,6 @@ pub struct ThemeWatcher { impl ThemeWatcher { pub fn spawn(styles: Arc>) -> Sender { let themes_dir = get_data_dir().join("themes"); - println!("{:?}", themes_dir); let default_path = themes_dir.join("default.toml"); let (fs_tx, fs_rx) = unbounded(); let (command_tx, command_rx) = unbounded(); diff --git a/src/keybinds.rs b/src/keybinds.rs index c9f993b..2c8a5d3 100644 --- a/src/keybinds.rs +++ b/src/keybinds.rs @@ -60,6 +60,8 @@ impl Default for Keybinds { let normalish_keys = [ (Char(':'), command_mode as Action), + (Char('$'), goto_line_end), + (Char('0'), goto_line_start), (Char('h'), move_char_left), (Char('j'), move_line_down), (Char('k'), move_line_up),