aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2021-05-24 10:37:58 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2021-05-24 10:37:58 +0300
commitee497beaf6d12a61a6cf716e9e48df949778d9cc (patch)
tree09eb4d672b311ae74d3392beaaac2446752e2b67
parenta64c90af5896d965a88c5f94e20b620ef2522f0a (diff)
[Docs] Add a couple of comments
-rw-r--r--doc/modules/ROOT/pages/installation.adoc2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/modules/ROOT/pages/installation.adoc b/doc/modules/ROOT/pages/installation.adoc
index 7e481b9..c1a25bf 100644
--- a/doc/modules/ROOT/pages/installation.adoc
+++ b/doc/modules/ROOT/pages/installation.adoc
@@ -61,7 +61,9 @@ Finally add this to your Emacs config:
[source,elisp]
----
(require 'projectile)
+;; Recommended keymap prefix on macOS
(define-key projectile-mode-map (kbd "s-p") 'projectile-command-map)
+;; Recommended keymap prefix on Windows/Linux
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
(projectile-mode +1)
----