aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/keymap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-10-07 09:31:04 +0000
committerBlaž Hrastnik2020-10-13 14:13:56 +0000
commita5be718dc61ffcc7c3d3af10e3f175359c7cc562 (patch)
treeefdd93b69739f2faf6a0803df4dcb3263a4bf46f /helix-view/src/keymap.rs
parent809827967687ea7e6b645e7a9a60f9c523250578 (diff)
x for line selection
Diffstat (limited to 'helix-view/src/keymap.rs')
-rw-r--r--helix-view/src/keymap.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/keymap.rs b/helix-view/src/keymap.rs
index da5934eb..8c53b403 100644
--- a/helix-view/src/keymap.rs
+++ b/helix-view/src/keymap.rs
@@ -145,6 +145,7 @@ pub fn default() -> Keymaps {
vec![key!('c')] => commands::change_selection,
vec![key!('s')] => commands::split_selection_on_newline,
vec![key!(';')] => commands::collapse_selection,
+ vec![key!('x')] => commands::select_line,
vec![key!('u')] => commands::undo,
vec![shift!('U')] => commands::redo,
vec![key!('y')] => commands::yank,