aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-01 14:16:19 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-01 14:16:19 +1300
commita1ee04d02877e1312fa2e7020da658f601551583 (patch)
tree3e9247809307ef1a04fe8cb05e3e15f2b09f11ea
parentMerge branch 'hotfix/v0.3.2' into develop (diff)
downloaddotfiles-a1ee04d02877e1312fa2e7020da658f601551583.tar.gz
dotfiles-a1ee04d02877e1312fa2e7020da658f601551583.zip
Make 'shellslash' setting conditional on feature
:help 'shellslash' says: > 'shellslash' only works when a backslash can be used as a path > separator. To test if this is so use: > if exists('+shellslash') This has actually already been done before in 795fd10, but the change was lost in a merge with a branch that restructured the whole Vim configuration.
-rw-r--r--vim/command.vim39
1 files changed, 39 insertions, 0 deletions
diff --git a/vim/command.vim b/vim/command.vim
new file mode 100644
index 00000000..af7c8e36
--- /dev/null
+++ b/vim/command.vim
@@ -0,0 +1,39 @@
+" 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
+
+" Always use forward slashes, I very seldom need to use Vim on Windows for
+" more than scratch space anyway
+if exists('+shellslash')
+ set shellslash
+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