aboutsummaryrefslogtreecommitdiff
path: root/vim/config/command.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-28 22:00:45 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-28 22:00:45 +1300
commitf1b0f0f30996e1114252bacaf8b170349d61c854 (patch)
treed15c9665cd9442a3e3d721689cf3675cfae27e6d /vim/config/command.vim
parentMove line number .vimrc config into subfile (diff)
downloaddotfiles-f1b0f0f30996e1114252bacaf8b170349d61c854.tar.gz
dotfiles-f1b0f0f30996e1114252bacaf8b170349d61c854.zip
Move command .vimrc config into subfile
A little bit iffy on the grouping here, but it's still better than having it all lumped in the one file.
Diffstat (limited to 'vim/config/command.vim')
-rw-r--r--vim/config/command.vim33
1 files changed, 33 insertions, 0 deletions
diff --git a/vim/config/command.vim b/vim/config/command.vim
new file mode 100644
index 00000000..1ffe9058
--- /dev/null
+++ b/vim/config/command.vim
@@ -0,0 +1,33 @@
+" Keep plenty of command and search history, because disk space is cheap
+set history=2000
+
+" Always tell me the number of lines changed by a command
+set report=0
+
+" Command-line based features
+if has('cmdline_info')
+
+ " Show my current position in the status bar
+ set ruler
+
+ " Show the keystrokes being entered in the screen
+ set showcmd
+
+ " Show the mode we're using if not normal mode (e.g. --INSERT--)
+ set showmode
+endif
+
+" Tolerate typos like :Wq, :Q, or :Qa and do what I mean, including any
+" arguments or modifiers; I fat-finger these commands a lot because I type
+" them so rapidly, and they don't correspond to any other commands I use
+if has('user_commands')
+ command! -bang -complete=file -nargs=? E e<bang> <args>
+ command! -bang -complete=file -nargs=? W w<bang> <args>
+ command! -bang -complete=file -nargs=? WQ wq<bang> <args>
+ command! -bang -complete=file -nargs=? Wq wq<bang> <args>
+ command! -bang Q q<bang>
+ command! -bang Qa qa<bang>
+ command! -bang QA qa<bang>
+ command! -bang Wa wa<bang>
+ command! -bang WA wa<bang>
+endif