Revert "removed println macro used for testing"

This reverts commit ddbdc3f7a7.
This commit is contained in:
Emma Tebibyte 2023-04-15 17:21:55 -04:00
parent ddbdc3f7a7
commit 4b6e5edbd3
2 changed files with 1 additions and 2 deletions

View File

@ -86,6 +86,7 @@ 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,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),