Compare commits

...

6 Commits

Author SHA1 Message Date
Peter Tripp
823e6b6d03 Merge remote-tracking branch 'origin/main' into linux_terminal_quality_of_life 2024-10-17 12:50:34 -04:00
Peter Tripp
2ff253c4ba Explain why no 'ctrl-p' 2024-10-17 12:44:45 -04:00
Peter Tripp
4ce2602739 Merge branch 'main' into linux_terminal_quality_of_life 2024-10-17 12:42:57 -04:00
Peter Tripp
d90661f9b4 Merge branch 'main' into linux_terminal_quality_of_life 2024-10-13 10:35:21 -04:00
Peter Tripp
3a73087125 Merge branch 'main' into linux_terminal_quality_of_life 2024-09-18 10:58:42 -04:00
Peter Tripp
bf389ad669 Linux terminal quality of life improvements 2024-08-28 17:34:07 +00:00

View File

@@ -646,19 +646,25 @@
"shift-insert": "terminal::Paste",
"ctrl-enter": "assistant::InlineAssist",
// Overrides for conflicting keybindings
"ctrl-w": ["terminal::SendKeystroke", "ctrl-w"],
"alt-t": ["terminal::SendKeystroke", "alt-t"], // readline: swap last two words
"ctrl-c": ["terminal::SendKeystroke", "ctrl-c"],
"ctrl-e": ["terminal::SendKeystroke", "ctrl-e"],
"ctrl-o": ["terminal::SendKeystroke", "ctrl-o"], // readline: accept-line and down; nano save
// "ctrl-p": ["terminal::SendKeystroke", "ctrl-p"], // readline: history-search-backward (conflicts with FileFinder::Toggle).
"ctrl-q": ["terminal::SendKeystroke", "ctrl-q"], // xon; nano search backwards
"ctrl-s": ["terminal::SendKeystroke", "ctrl-s"], // xoff;
"ctrl-t": ["terminal::SendKeystroke", "ctrl-t"], // readline: swap last two characters
"ctrl-w": ["terminal::SendKeystroke", "ctrl-w"], // readline: delete word
"ctrl-shift-a": "editor::SelectAll",
"ctrl-shift-f": "buffer_search::Deploy",
"ctrl-shift-l": "terminal::Clear",
"ctrl-shift-w": "pane::CloseActiveItem",
"ctrl-e": ["terminal::SendKeystroke", "ctrl-e"],
"up": ["terminal::SendKeystroke", "up"],
"pageup": ["terminal::SendKeystroke", "pageup"],
"down": ["terminal::SendKeystroke", "down"],
"pagedown": ["terminal::SendKeystroke", "pagedown"],
"escape": ["terminal::SendKeystroke", "escape"],
"enter": ["terminal::SendKeystroke", "enter"],
"ctrl-c": ["terminal::SendKeystroke", "ctrl-c"],
"shift-pageup": "terminal::ScrollPageUp",
"shift-pagedown": "terminal::ScrollPageDown",
"shift-up": "terminal::ScrollLineUp",