You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Breaking) Following commands are renamed for clarity and consistency:
bot is renamed to bottom
cmd-delete-word is renamed to cmd-delete-unix-word
cmd-beg is renamed to cmd-home
cmd-delete-beg is renamed to cmd-delete-home
cmd-comp is renamed to cmd-complete
cmd-hist-next is renamed to cmd-history-next
cmd-hist-prev is renamed to cmd-history-prev
cmd-put is renamed to cmd-yank
(New) Support for alt key bindings have been added using the commonly used escape delaying mechanism. Delay value is set to 100ms which is also used for other escape codes in termbox. Keys are named with an a prefix, as in <a-f> for alt and f keys. Also note that the old mechanism for alt keybindings on 8-bit terminals still works as before.
(New) Following command line commands and their default alt keybindings have been added:
cmd-word with <a-f>
cmd-word-back with <a-b>
cmd-capitalize-word with <a-c>
cmd-delete-word with <a-d>
cmd-uppercase-word with <a-u>
cmd-lowercase-word with <a-l>
cmd-transpose-word with <a-t>
(Fix) Default editor, pager, and opener commands should now work in windows. Opener still only works with paths without spaces though.
(Fix) 8-bit color codes and attributes are not confused anymore.
(Fix) History selection is disabled when a piping shell command is running.