aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vim-mode/vim_mode.pl34
1 files changed, 17 insertions, 17 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl
index a64df1e..8e3a41d 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -313,23 +313,23 @@ my $commands
# All available commands in Ex-Mode.
my $commands_ex
= {
- s => { func => \&ex_substitute => type => C_EX },
- bnext => { func => \&ex_bnext => type => C_EX },
- bn => { func => \&ex_bnext => type => C_EX },
- bprev => { func => \&ex_bprev => type => C_EX },
- bp => { func => \&ex_bprev => type => C_EX },
- bdelete => { func => \&ex_bdelete => type => C_EX },
- bd => { func => \&ex_bdelete => type => C_EX },
- buffer => { func => \&ex_buffer => type => C_EX },
- b => { func => \&ex_buffer => type => C_EX },
- registers => { func => \&ex_registers => type => C_EX },
- reg => { func => \&ex_registers => type => C_EX },
- display => { func => \&ex_registers => type => C_EX },
- di => { func => \&ex_registers => type => C_EX },
- buffers => { func => \&ex_buffers => type => C_EX },
- ls => { func => \&ex_buffers => type => C_EX },
- undolist => { func => \&ex_undolist => type => C_EX },
- undol => { func => \&ex_undolist => type => C_EX },
+ s => { func => \&ex_substitute, type => C_EX },
+ bnext => { func => \&ex_bnext, type => C_EX },
+ bn => { func => \&ex_bnext, type => C_EX },
+ bprev => { func => \&ex_bprev, type => C_EX },
+ bp => { func => \&ex_bprev, type => C_EX },
+ bdelete => { func => \&ex_bdelete, type => C_EX },
+ bd => { func => \&ex_bdelete, type => C_EX },
+ buffer => { func => \&ex_buffer, type => C_EX },
+ b => { func => \&ex_buffer, type => C_EX },
+ registers => { func => \&ex_registers, type => C_EX },
+ reg => { func => \&ex_registers, type => C_EX },
+ display => { func => \&ex_registers, type => C_EX },
+ di => { func => \&ex_registers, type => C_EX },
+ buffers => { func => \&ex_buffers, type => C_EX },
+ ls => { func => \&ex_buffers, type => C_EX },
+ undolist => { func => \&ex_undolist, type => C_EX },
+ undol => { func => \&ex_undolist, type => C_EX },
};
# MAPPINGS