Added D to delete to the end of the line

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2023-12-28 00:13:32 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2023-12-28 00:13:32 +0100
Commit df266469e0fba4164b6b069bcd495e9a23d4f5d3 (patch)
-rw-r--r-- helix.toml 2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix.toml b/helix.toml
...
8
idle-timeout = 1000
8
idle-timeout = 1000
9
mouse = false
9
mouse = false
10
middle-click-paste = true
10
middle-click-paste = true
  
11
rulers = [80, 120]
11
  
12
  
12
[editor.cursor-shape]
13
[editor.cursor-shape]
13
insert = "bar"
14
insert = "bar"
...
21
"esc" = [ "collapse_selection", "keep_primary_selection" ]
22
"esc" = [ "collapse_selection", "keep_primary_selection" ]
22
"{" = [ "goto_prev_paragraph" ]
23
"{" = [ "goto_prev_paragraph" ]
23
"}" = [ "goto_next_paragraph" ]
24
"}" = [ "goto_next_paragraph" ]
  
25
"D" = ["ensure_selections_forward", "extend_to_line_end", "delete_selection"]
24
  
26
  
25
[keys.select]
27
[keys.select]
26
"{" = [ "goto_prev_paragraph" ]
28
"{" = [ "goto_prev_paragraph" ]
...