From 64d41f0ee5970b2d875880994eb287b97cad24a1 Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Sun, 1 Oct 2017 14:03:34 +0200 Subject: [PATCH] =?utf8?q?Change=20the=20default=20command=20prefix=20to?= =?utf8?q?=20=E2=80=9CC-c=20=3D=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit “C-c P” is technically reserved, and still too easy to mix up with “C-c p” used by ‘projectile’. --- README.md | 12 ++++++------ pelican-mode.el | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dbdd225..308094c 100644 --- a/README.md +++ b/README.md @@ -36,12 +36,12 @@ Or with `use-package` and deferred loading: Or, register `pelican-mode` or `pelican-mode-enable-if-site` as hook functions for more direct control. -* `C-c P d` - Update the document’s date -* `C-c P f` - Set a metadata field (title, category, etc.) -* `C-c P h` - Generate HTML output for a site (equivalent to `make html`) -* `C-c P n` - Insert a post or page header -* `C-c P p` - Remove draft status from a post (i.e. publish it) -* `C-c P u` - Upload a site using rsync (equivalent to `make rsync_upload`) +* `C-c = d` - Update the document’s date +* `C-c = f` - Set a metadata field (title, category, etc.) +* `C-c = h` - Generate HTML output for a site (equivalent to `make html`) +* `C-c = n` - Insert a post or page header +* `C-c = p` - Remove draft status from a post (i.e. publish it) +* `C-c = u` - Upload a site using rsync (equivalent to `make rsync_upload`) ## Troubleshooting diff --git a/pelican-mode.el b/pelican-mode.el index f72a681..02d9078 100644 --- a/pelican-mode.el +++ b/pelican-mode.el @@ -73,7 +73,7 @@ For more information about Pelican see URL https://blog.getpelican.com/." :group 'convenience) -(defcustom pelican-mode-keymap-prefix (kbd "C-c P") +(defcustom pelican-mode-keymap-prefix (kbd "C-c =") "Pelican mode keymap prefix." :group 'pelican :type 'string) -- 2.20.1