adjust meta-backspace and meta-delete so that they both delete whole words, with backspace getting rid of the one before the insertion point and delete getting rid of the one after the insertion point

This commit is contained in:
Robby Findler 2010-12-10 09:01:13 -06:00
parent 3d75992400
commit ac8fd51bc4

View File

@ -1230,7 +1230,8 @@
(map "del" "delete-key")
(map-meta "d" "kill-word")
(map-meta "del" "backward-kill-word")
(map-meta "del" "kill-word")
(map-meta "backspace" "backward-kill-word")
(map-meta "c" "capitalize-word")
(map-meta "u" "upcase-word")
(map-meta "l" "downcase-word")