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

original commit: ac8fd51bc4c8fea7889e170da9653994d51ef30a
This commit is contained in:
Robby Findler 2010-12-10 09:01:13 -06:00
parent 3f363bcfd2
commit 2d216179e5

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")