Move keybind to

This commit is contained in:
Rasmus Larsen
2019-05-08 18:45:10 +02:00
parent 6ffaa8e8a0
commit a145d73072
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ have them configurable.
* `r` to toggle repeat mode
* `z` to toggle shuffle playback
* `q` quits ncspot
* `m` copies a sharable URL to the song to the system clipboard
* `x` copies a sharable URL to the song to the system clipboard
You can also open a Vim style commandprompt using `:`, the following commands
are supported:

View File

@@ -341,7 +341,7 @@ impl CommandManager {
kb.insert(",".into(), "seek -500".into());
kb.insert("r".into(), "repeat".into());
kb.insert("z".into(), "shuffle".into());
kb.insert("m".into(), "share".into());
kb.insert("x".into(), "share".into());
kb.insert("F1".into(), "focus queue".into());
kb.insert("F2".into(), "focus search".into());