Remap org-attach to ,A

It was mapped to ,ia but it's used for more than inserting attachments.

Fixes #9050
This commit is contained in:
Eivind Fonn 2017-06-12 12:18:43 +02:00
parent 0d0f19356f
commit 29d4fa5374
2 changed files with 3 additions and 2 deletions

View file

@ -285,6 +285,7 @@ To permanently enable mode line display of org clock, add this snippet to your
| ~SPC m -~ | org-ctrl-c-minus | | ~SPC m -~ | org-ctrl-c-minus |
| ~SPC m '~ | org-edit-special | | ~SPC m '~ | org-edit-special |
| ~SPC m a~ | org-agenda | | ~SPC m a~ | org-agenda |
| ~SPC m A~ | org-attach |
| ~SPC m c~ | org-capture | | ~SPC m c~ | org-capture |
| ~SPC m C c~ | org-clock-cancel | | ~SPC m C c~ | org-clock-cancel |
| ~SPC m C g~ | evil-org-recompute-clocks | | ~SPC m C g~ | evil-org-recompute-clocks |
@ -388,7 +389,6 @@ Please see the [[https://github.com/Somelauw/evil-org-mode/blob/master/doc/keyth
| Key Binding | Description | | Key Binding | Description |
|---------------+----------------------------------| |---------------+----------------------------------|
| ~SPC m i a~ | org-attach |
| ~SPC m i d~ | org-insert-drawer | | ~SPC m i d~ | org-insert-drawer |
| ~SPC m i D s~ | Take screenshot | | ~SPC m i D s~ | Take screenshot |
| ~SPC m i D y~ | Yank image url | | ~SPC m i D y~ | Yank image url |

View file

@ -246,8 +246,9 @@ Will work on both org-mode and any mode that accepts plain html."
"RET" 'org-ctrl-c-ret "RET" 'org-ctrl-c-ret
"-" 'org-ctrl-c-minus "-" 'org-ctrl-c-minus
"#" 'org-update-statistics-cookies "#" 'org-update-statistics-cookies
;; attachments
"A" 'org-attach
;; insertion ;; insertion
"ia" 'org-attach
"id" 'org-insert-drawer "id" 'org-insert-drawer
"ie" 'org-set-effort "ie" 'org-set-effort
"if" 'org-footnote-new "if" 'org-footnote-new