diff options
author | Simon Ruderich <simon@ruderich.org> | 2011-01-20 20:20:05 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2011-01-20 20:20:05 +0000 |
commit | 550b84c3ddf77b86b4d7182fa0eea73eeeb73ae2 (patch) | |
tree | 1b0c58b87cd87e9e514eed8b339472440c68e8c5 /vim-mode/vim_mode.pl | |
parent | ido-mode/ido_switcher: added C-k to close windows without exiting mode (diff) | |
download | irssi-scripts-550b84c3ddf77b86b4d7182fa0eea73eeeb73ae2.tar.gz irssi-scripts-550b84c3ddf77b86b4d7182fa0eea73eeeb73ae2.zip |
vim-mode: Support ^H as BS key.
Reported by peth.
At the moment it's not working for custom mappings though!
Diffstat (limited to '')
-rw-r--r-- | vim-mode/vim_mode.pl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 7d898ab..a0be248 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -312,6 +312,7 @@ my $commands # arrow like movement h => { char => 'h', func => \&cmd_h, type => C_NORMAL }, l => { char => 'l', func => \&cmd_l, type => C_NORMAL }, + "\x08" => { char => '<BS>', func => \&cmd_h, type => C_NORMAL }, "\x7F" => { char => '<BS>', func => \&cmd_h, type => C_NORMAL }, ' ' => { char => '<Space>', func => \&cmd_l, type => C_NORMAL }, # history movement @@ -2347,9 +2348,9 @@ sub got_key { _stop(); return; - # Pressing delete resets insert mode repetition. + # Pressing delete resets insert mode repetition (8 = BS, 127 = DEL). # TODO: maybe allow it - } elsif ($key == 127) { + } elsif ($key == 8 || $key == 127) { @insert_buf = (); # All other entered characters need to be stored to allow repeat of # insert mode. Ignore delete and control characters. @@ -2743,8 +2744,8 @@ sub handle_command_cmd { sub handle_command_ex { my ($key) = @_; - # DEL key - remove last character - if ($key == 127) { + # BS key (8) or DEL key (127) - remove last character. + if ($key == 8 || $key == 127) { print "Delete" if DEBUG; if (scalar @ex_buf > 0) { pop @ex_buf; |