From 4b6e5edbd301ba5a7d13dbab5836e3469fab1d44 Mon Sep 17 00:00:00 2001 From: emma Date: Sat, 15 Apr 2023 17:21:55 -0400 Subject: [PATCH] Revert "removed println macro used for testing" This reverts commit ddbdc3f7a7dd1ebe9a1c6a98b204e6995b731747. --- src/config.rs | 1 + src/keybinds.rs | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index 35fe0fb..38e89f6 100644 --- a/src/config.rs +++ b/src/config.rs @@ -86,6 +86,7 @@ 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 2c8a5d3..c9f993b 100644 --- a/src/keybinds.rs +++ b/src/keybinds.rs @@ -60,8 +60,6 @@ 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),