emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Update some changed export keybindings [worg]
@ 2021-08-24 11:02 Stefan Kangas
  2021-08-31 11:37 ` Timothy
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Kangas @ 2021-08-24 11:02 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 233 bytes --]

The attached patch fixes some incorrect keybindings in worg.

I'd recommend that someone takes a look at all the "C-c C-e ..."
keybindings, as there are some that I was unsure about, and may still
be incorrect even after this patch.

[-- Attachment #2: 0001-Update-some-changed-export-keybindings.patch --]
[-- Type: application/octet-stream, Size: 4854 bytes --]

From 39b83184ba88cf384fb4e8927772970cb4ed7840 Mon Sep 17 00:00:00 2001
From: Stefan Kangas <stefan@marxist.se>
Date: Tue, 24 Aug 2021 12:59:47 +0200
Subject: [PATCH] Update some changed export keybindings

---
 exporters/beamer/tutorial.org                    | 4 ++--
 org-contrib/babel/how-to-use-Org-Babel-for-R.org | 2 +-
 org-faq.org                                      | 8 ++++----
 orgcard.org                                      | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/exporters/beamer/tutorial.org b/exporters/beamer/tutorial.org
index 484771a3..dbe0f07f 100644
--- a/exporters/beamer/tutorial.org
+++ b/exporters/beamer/tutorial.org
@@ -34,7 +34,7 @@ keybindings]].
 * First steps
 ** The export template
 Starting with an empty file called =presentation.org= [1], say, the
-first step is to insert the default org export template (=C-c C-e t=
+first step is to insert the default org export template (=C-c C-e #=
 with the default keybindings). This will generate something that looks
 like this (some specific entries will vary):
 
@@ -316,7 +316,7 @@ different from the default (with no other changes required!):
 ** Table of contents
 
 The default =toc:t= option generated by the [[*The%20export%20template][export template command]]
-(=C-c C-e t=) indicates that a table of contents will be generated.
+(=C-c C-e #=) indicates that a table of contents will be generated.
 This will create a slide immediately after the title slide which will
 have the list of sections in the beamer document.  Please note that if
 you want this type of functionality, you will have to specify the
diff --git a/org-contrib/babel/how-to-use-Org-Babel-for-R.org b/org-contrib/babel/how-to-use-Org-Babel-for-R.org
index 6102e84c..2bcc840c 100644
--- a/org-contrib/babel/how-to-use-Org-Babel-for-R.org
+++ b/org-contrib/babel/how-to-use-Org-Babel-for-R.org
@@ -74,7 +74,7 @@ pressing =C-c C-c= and see the R output being inserted into the document.
 Alternatively, you can press =C-c C-o= to see the R output in a separate
 window.
 
-To generate (export to) HTML document, press =C-c C-e b=.  Note other
+To generate (export to) HTML document, press =C-c C-e h h=.  Note other
 document options are available upon pressing =C-c C-e=.
 
 ** Emacs Customization Settings
diff --git a/org-faq.org b/org-faq.org
index 6f170e8d..2b70ee58 100644
--- a/org-faq.org
+++ b/org-faq.org
@@ -3656,8 +3656,8 @@ Yes.  Vagn Johansen wrote [[http://ozymandias.dk/emacs/org-import-calendar.el][o
 If you want to export a subtree, mark the subtree as region and then
 export. Marking can be done with =C-c @ C-x C-x=, for example.
 
-Alternatively, you can select option =1= in the org export dispatcher
-(e.g.., =C-c C-e 1 h= to export the current subtree to html).
+Alternatively, you can select option =C-s= in the org export dispatcher
+(e.g.., =C-c C-e C-s= to export the current subtree to html).
 
 By default, the title of the exported file will be set to the heading
 of the subtree. You can, however, [[#export-options-for-subtree][customize the title and other export
@@ -4262,7 +4262,7 @@ the =fontspec= commands setting the font choices can be put in the
 
 The upshot is that when you want to export an =.org= file using XeLaTeX,
 you can now simply make sure the line =LATEX_CMD: xelatex= is in your
-=.org= file, then do =C-c C-e d= as usual, and org-mode, with latexmk in
+=.org= file, then do =C-c C-e l l= as usual, and org-mode, with latexmk in
 the background, does the rest for you.
 
 ** Why is my exported PDF file almost unreadable?
@@ -4314,7 +4314,7 @@ and you could use `http' addresses just as well.
 
 Orgmode exports natively to =OpenDocument= format using =org-odt= module.
 
-The key bindings for export are =C-c C-e o= and =C-c C-e O=.
+The key bindings for export are =C-c C-e o o= and =C-c C-e o O=.
 
 If you don't see =OpenDocumentText= as an option under =C-c C-e= you need
 to upgrade to =Org-mode 7.6= by one of the following means:
diff --git a/orgcard.org b/orgcard.org
index 5a20f266..9d4c3874 100644
--- a/orgcard.org
+++ b/orgcard.org
@@ -415,8 +415,8 @@ directory. Publishing puts the resulting file into some other place.
 | Key                    | Function                                   |
 |------------------------+--------------------------------------------|
 | =C-c C-e=              | export/publish dispatcher                  |
-| =C-c C-e v=            | export visible part only                   |
-| =C-c C-e t=            | insert template of export options          |
+| =C-c C-e C-v=          | export visible part only                   |
+| =C-c C-e #=            | insert template of export options          |
 | =C-c :=                | toggle fixed width for entry or region     |
 | =C-c C-x {\tt\char`\}= | toggle pretty display of scripts, entities |
 
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Update some changed export keybindings [worg]
  2021-08-24 11:02 [PATCH] Update some changed export keybindings [worg] Stefan Kangas
@ 2021-08-31 11:37 ` Timothy
  0 siblings, 0 replies; 2+ messages in thread
From: Timothy @ 2021-08-31 11:37 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 501 bytes --]

Hi Stefan,

Thanks for the patch. I’ve just applied it. I haven’t had a look at the other
“C-c C-e” keybindings, but I’m glad that you brought it up. Hopefully someone
else will take a look at some point.

> The attached patch fixes some incorrect keybindings in worg.
>
> I’d recommend that someone takes a look at all the “C-c C-e …”
> keybindings, as there are some that I was unsure about, and may still
> be incorrect even after this patch.

All the best,
Timothy

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-31 11:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-24 11:02 [PATCH] Update some changed export keybindings [worg] Stefan Kangas
2021-08-31 11:37 ` Timothy

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).