emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/embark 281ee5004e: Free up i for embark-insert in more


From: ELPA Syncer
Subject: [elpa] externals/embark 281ee5004e: Free up i for embark-insert in more cases
Date: Sun, 25 Jun 2023 18:57:47 -0400 (EDT)

branch: externals/embark
commit 281ee5004ec583f7556fde41af7268b7d8cef0da
Author: Omar Antolín Camarena <omar.antolin@gmail.com>
Commit: Omar Antolín Camarena <omar.antolin@gmail.com>

    Free up i for embark-insert in more cases
    
    I feel a little bad about changing the binding for indent-rigidly,
    because it is well-established now, but since that command uses the
    arrow keys anyway, binding it to left and right just makes sense.
    
    The point for me is that once you get used to duplicating things at
    point with C-. i, it gets really frustrating when C-. i does something
    else instead!
---
 CHANGELOG.org | 2 +-
 embark-org.el | 6 +++---
 embark.el     | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.org b/CHANGELOG.org
index 70f0381976..c568fb14a6 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -5,7 +5,7 @@
   the current buffer (contributed by @minad, thanks!)
 - Renamed =embark-isearch= to =embark-isearch-forward= and added
   =embark-isearch-backward=.
-- Added key bindings for org agenda items consist with those of org
+- Added key bindings for org agenda items consistent with those of org
   headings where possible. Also improved bindings for org targets in
   general.
 * Version 0.22.1 (2023-04-20)
diff --git a/embark-org.el b/embark-org.el
index 04c0fa8440..b5e98bb42f 100644
--- a/embark-org.el
+++ b/embark-org.el
@@ -169,8 +169,8 @@
   "v" #'org-table-move-row-down
   "<" #'org-table-move-column-left
   ">" #'org-table-move-column-right
-  "i" #'org-table-insert-row
-  "I" #'org-table-insert-column ; capital = column
+  "o" #'org-table-insert-row
+  "O" #'org-table-insert-column ; capital = column
   "h" #'org-table-insert-hline
   "=" #'org-table-eval-formula
   "e" #'org-table-edit-field
@@ -188,7 +188,7 @@
   "y" #'org-table-paste-rectangle
   "d" #'org-table-toggle-formula-debugger
   "o" #'org-table-toggle-coordinate-overlays
-  "i" #'org-table-iterate
+  "g" #'org-table-iterate
   "e" #'org-table-export)
 
 (push 'embark--ignore-target            ; prompts for file name
diff --git a/embark.el b/embark.el
index a638a1f5fe..b08c0c70bd 100644
--- a/embark.el
+++ b/embark.el
@@ -4117,8 +4117,8 @@ This simply calls RUN with the REST of its arguments 
inside
   "<" #'embark-eval-replace
   "a" #'align
   "A" #'align-regexp
-  "i" #'indent-rigidly
-  "I" #'embark-insert
+  "<left>" #'indent-rigidly
+  "<right>" #'indent-rigidly
   "TAB" #'indent-region
   "f" #'fill-region
   "p" #'fill-region-as-paragraph



reply via email to

[Prev in Thread] Current Thread [Next in Thread]