removed println macro used for testing

This commit is contained in:
Emma Tebibyte 2023-04-15 17:21:17 -04:00
parent 70f242f8f6
commit ddbdc3f7a7
2 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,6 @@ pub struct ThemeWatcher {
impl ThemeWatcher {
pub fn spawn(styles: Arc<Mutex<StyleStore>>) -> Sender<PathBuf> {
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();

View File

@ -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),