[gnome-builder/wip/libide] libide: add macro recording to dge, dgE, dgg, dgk, dgj, dgm
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/libide] libide: add macro recording to dge, dgE, dgg, dgk, dgj, dgm
- Date: Thu, 12 Mar 2015 09:24:05 +0000 (UTC)
commit ba0af9934d691a2d41f754590a85d744e30f0b13
Author: Christian Hergert <christian hergert me>
Date: Thu Mar 12 02:23:56 2015 -0700
libide: add macro recording to dge,dgE,dgg,dgk,dgj,dgm
data/keybindings/vim.css | 42 ++++++++++++++++++++++++++++++++----------
1 files changed, 32 insertions(+), 10 deletions(-)
---
diff --git a/data/keybindings/vim.css b/data/keybindings/vim.css
index 8928621..7d13a3a 100644
--- a/data/keybindings/vim.css
+++ b/data/keybindings/vim.css
@@ -776,16 +776,38 @@
@binding-set builder-vim-source-view-normal-d-g
{
- bind "e" { "movement" (previous-word-end, 1, 1, 1)
- "delete-selection" () };
- bind "<shift>e" { "movement" (previous-full-word-end, 1, 1, 1)
- "delete-selection" () };
- bind "g" { "movement" (first-line, 0, 0, 0)
- "delete-selection" () };
- bind "j" { "movement" (next-line, 0, 1, 1)
- "delete-selection" () };
- bind "m" { "movement" (middle-char, 0, 1, 0)
- "delete-selection" () };
+ bind "e" { "begin-macro" ()
+ "movement" (previous-word-end, 1, 1, 1)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
+ bind "<shift>e" { "begin-macro" ()
+ "movement" (previous-full-word-end, 1, 1, 1)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
+ bind "g" { "begin-macro" ()
+ "movement" (first-line, 1, 1, 0)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
+ bind "k" { "begin-macro" ()
+ "movement" (next-char, 1, 1, 0)
+ "movement" (previous-line, 1, 1, 1)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
+ bind "j" { "begin-macro" ()
+ "movement" (next-char, 1, 1, 0)
+ "movement" (next-line, 1, 1, 1)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
+ bind "m" { "begin-macro" ()
+ "movement" (middle-char, 1, 1, 0)
+ "copy-clipboard" ()
+ "delete-selection" ()
+ "end-macro" () };
}
@binding-set builder-vim-source-view-normal-d-i
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]