summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2019-02-16 22:05:37 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2019-02-16 22:05:37 -0500
commitcda3f32b6ce5f2404bd80f878d1e03982aa3d749 (patch)
treefab01ea268cf500eac56950749e54e26d197847c /src/config
parent130f54a49ca0a9852c488b7583d6cdf053855263 (diff)
fix open_with adding program name as argument
Diffstat (limited to 'src/config')
-rw-r--r--src/config/keymap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/keymap.rs b/src/config/keymap.rs
index c71ef8d..2861885 100644
--- a/src/config/keymap.rs
+++ b/src/config/keymap.rs
@@ -38,7 +38,7 @@ impl Flattenable<JoshutoKeymap> for JoshutoRawKeymap {
insert_keycommand(&mut keymaps, command, &mapcommand.keys[..]);
}
None => {
- println!("Unknown command: {}", mapcommand.command);
+ eprintln!("Unknown command: {}", mapcommand.command);
}
}
}