diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-12 03:21:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-12 03:21:21 +0200 |
commit | dd391bfca1f37093ba556f5da6a7f3eb81147fc0 (patch) | |
tree | 853aea222ea79998c63a0ef2e17e3e44101166e6 /src/nvim/options.lua | |
parent | 2d72d85b23761383ac7838faed2f7b53bdce8817 (diff) | |
parent | 7c4e5dfd2722b8c25641cbbc66c5b0133d0e2f03 (diff) | |
download | rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.tar.gz rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.tar.bz2 rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.zip |
Merge #6497 from justinmk/win-quot
win: system('...'): special-case cmd.exe
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 4ca63f2efe..4e7be63b63 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2051,7 +2051,11 @@ return { secure=true, vi_def=true, varname='p_srr', - defaults={if_true={vi=">"}} + defaults={ + condition='WIN32', + if_true={vi=">%s 2>&1"}, + if_false={vi=">"} + } }, { full_name='shellslash', abbreviation='ssl', |