mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-25 19:22:08 +03:00
Merge pull request #227 from vglfr/master
Handle `Ctrl-h` (backspace) in alacritty
This commit is contained in:
commit
e4fb394cdf
@ -54,7 +54,7 @@
|
||||
-- If a debug log is requested then vty will output the current input
|
||||
-- table to the log in the above format. A workflow for using this is
|
||||
-- to set @VTY_DEBUG_LOG@. Run the application. Check the debug log for
|
||||
-- incorrect mappings. Add corrected mappings to @$HOME/.vty/config@.
|
||||
-- incorrect mappings. Add corrected mappings to @$HOME\/.vty\/config@.
|
||||
--
|
||||
-- = Unicode Character Width Maps
|
||||
--
|
||||
|
@ -91,7 +91,7 @@ specialSupportKeys =
|
||||
-- special support for ESC
|
||||
, ("\ESC",EvKey KEsc []), ("\ESC\ESC",EvKey KEsc [MMeta])
|
||||
-- Special support for backspace
|
||||
, ("\DEL",EvKey KBS []), ("\ESC\DEL",EvKey KBS [MMeta])
|
||||
, ("\DEL",EvKey KBS []), ("\ESC\DEL",EvKey KBS [MMeta]), ("\b",EvKey KBS [])
|
||||
-- Special support for Enter
|
||||
, ("\ESC\^J",EvKey KEnter [MMeta]), ("\^J",EvKey KEnter [])
|
||||
-- explicit support for tab
|
||||
|
Loading…
Reference in New Issue
Block a user