Move bindings together

This commit is contained in:
Nicolas Goaziou 2018-02-01 13:54:25 +01:00
parent 2a91f967ca
commit 75ece16507
1 changed files with 3 additions and 3 deletions

View File

@ -18947,7 +18947,9 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names."
'backward-paragraph 'org-backward-paragraph 'backward-paragraph 'org-backward-paragraph
'backward-sentence 'org-backward-sentence 'backward-sentence 'org-backward-sentence
'forward-sentence 'org-forward-sentence 'forward-sentence 'org-forward-sentence
'delete-indentation 'org-delete-indentation) 'fill-paragraph 'org-fill-paragraph
'delete-indentation 'org-delete-indentation
'transpose-words 'org-transpose-words)
;;;; All the other keys ;;;; All the other keys
(org-defkey org-mode-map (kbd "|") #'org-force-self-insert) (org-defkey org-mode-map (kbd "|") #'org-force-self-insert)
@ -19447,7 +19449,6 @@ word constituents."
(interactive) (interactive)
(with-syntax-table org-mode-transpose-word-syntax-table (with-syntax-table org-mode-transpose-word-syntax-table
(call-interactively 'transpose-words))) (call-interactively 'transpose-words)))
(org-remap org-mode-map 'transpose-words 'org-transpose-words)
(defvar org-ctrl-c-ctrl-c-hook nil (defvar org-ctrl-c-ctrl-c-hook nil
"Hook for functions attaching themselves to `C-c C-c'. "Hook for functions attaching themselves to `C-c C-c'.
@ -22159,7 +22160,6 @@ filling the current element."
(goto-char origin) (goto-char origin)
(set-marker origin nil)))) (set-marker origin nil))))
(t (org-fill-element justify)))) (t (org-fill-element justify))))
(org-remap org-mode-map 'fill-paragraph 'org-fill-paragraph)
(defun org-auto-fill-function () (defun org-auto-fill-function ()
"Auto-fill function." "Auto-fill function."