aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2022-05-09 14:00:20 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2022-05-09 14:00:20 +0200
commit135f4e55eea3981eabc19a3faf22b926983447ef (patch)
tree8bf458f5120c7bd29388d5cadc0464631cfb8804
parent5cac3702e561ec073001969c27b75e402f6eafbc (diff)
README: Amends keybinding instructions
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 41277fd..a0eafa0 100644
--- a/README
+++ b/README
@@ -17,14 +17,14 @@ guix package --install-from-file=./emacs-fdroid.scm
This package makes use of the [[https://github.com/oantolin/embark][Embark]] and [[https://github.com/minad/consult][consult]] packages to provide a more coherent interface to the interactive commands, so ensure these are installed too. An example configuration might look like what follows.
#+begin_src elisp
-(global-set-key (kbd "C-c -") #'fdroid-list-packages)
+(fdroid-default-keybindings)
(with-eval-after-load 'fdroid
(custom-set-variables
'(fdroid-log-events t) ; Whether messages should be logged after an operation
'(fdroid-program (executable-find "fdroidcl")))) ; Path to `fdroidcl'
#+end_src
-In the above configuration, we only set one keybinding because =fdroid-list-packages= shows all packages available for the current F-Droid repository, and from then one can use the following Embark actions on a particular package:
+In the above configuration, we set the default keybindings for the =fdroid-map= and from here on we can use the =fdroid-list-packages= (~C-c C-- l~) command to show all packages available for the current F-Droid repository. We can then invoke the following Embark actions on the targets:
- ~i~ :: install the current package.
- ~u~ :: uninstall the current package.