aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-01-01 06:36:10 -0800
committerGitHub <noreply@github.com>2020-01-01 06:36:10 -0800
commita251b588acb3a561e5da695280774b9b6fbcd0ea (patch)
treee361e0c201d04c304e5c188bf7a9f295a318c0d2 /runtime/doc
parent070bd3ea231b6b98c9e9f1057fdbcf31d1877a70 (diff)
parent0da7774cf0e503efc93c15033a94ff756d5252e1 (diff)
downloadrneovim-a251b588acb3a561e5da695280774b9b6fbcd0ea.tar.gz
rneovim-a251b588acb3a561e5da695280774b9b6fbcd0ea.tar.bz2
rneovim-a251b588acb3a561e5da695280774b9b6fbcd0ea.zip
Merge #11642 'CI: test powershell core'
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/options.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 494a265338..e32a52cdbb 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -5202,8 +5202,9 @@ A jump table for the options with a short description can be found at |Q_op|.
Note that such processing is done after |:set| did its own round of
unescaping, so to keep yourself sane use |:let-&| like shown above.
*shell-powershell*
- To use powershell (on Windows): >
- set shell=powershell shellquote= shellpipe=\| shellxquote=
+ To use powershell: >
+ let &shell = has('win32') ? 'powershell' : 'pwsh'
+ set shellquote= shellpipe=\| shellxquote=
set shellcmdflag=-NoLogo\ -NoProfile\ -ExecutionPolicy\ RemoteSigned\ -Command
set shellredir=\|\ Out-File\ -Encoding\ UTF8