From a145d73072e2afb75fe877085e154d3f23e53889 Mon Sep 17 00:00:00 2001 From: Rasmus Larsen Date: Wed, 8 May 2019 18:45:10 +0200 Subject: [PATCH] Move keybind to --- README.md | 2 +- src/commands.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aabf145..25ffc16 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/src/commands.rs b/src/commands.rs index 5265d41..84d50dc 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -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());