aboutsummaryrefslogtreecommitdiff
path: root/vim/config/command.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-01 14:40:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-01 14:41:08 +1300
commit570f7b060c6a9a70c8543216fe40822a8ab35730 (patch)
treeab9063147dc0c590a15af992d941f6fb9ef30dad /vim/config/command.vim
parentMake 'shellslash' setting conditional on feature (diff)
downloaddotfiles-570f7b060c6a9a70c8543216fe40822a8ab35730.tar.gz
dotfiles-570f7b060c6a9a70c8543216fe40822a8ab35730.zip
Move 'shellpipe' setting to more logical location
It makes more sense next to 'shellslash' in vim/config/command.vim than it does in vim/config/term.vim; the latter file is supposed to describe settings related to the terminal, not the shell.
Diffstat (limited to 'vim/config/command.vim')
-rw-r--r--vim/config/command.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/vim/config/command.vim b/vim/config/command.vim
index a7389cfb..1d2b647a 100644
--- a/vim/config/command.vim
+++ b/vim/config/command.vim
@@ -17,6 +17,9 @@ if has('cmdline_info')
set showmode
endif
+" Don't write the output of :make to the terminal
+set shellpipe=>
+
" Always use forward slashes, I very seldom need to use Vim on Windows for
" more than scratch space anyway
set shellslash