aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-30 14:32:06 -0800
committerGitHub <noreply@github.com>2019-11-30 14:32:06 -0800
commitf700170197819209e70369af7108ace83216b0ea (patch)
tree7df89eb001a9c394cb5ca695b9c9d1ce6666da16 /runtime/doc/eval.txt
parentf6e7857c54a015cdfac9ce65ec0b65d65d590aeb (diff)
parent5b60023a8c19fd77c426b0070057b95cae89cd42 (diff)
downloadrneovim-f700170197819209e70369af7108ace83216b0ea.tar.gz
rneovim-f700170197819209e70369af7108ace83216b0ea.tar.bz2
rneovim-f700170197819209e70369af7108ace83216b0ea.zip
Merge #11483 from janlazo/vim-8.1.2355
vim-patch:8.1.{2355,2363}
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index f39c40492b..ab65cc4560 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4969,9 +4969,11 @@ has({feature}) Returns 1 if {feature} is supported, 0 otherwise. The
< *feature-list*
List of supported pseudo-feature names:
acl |ACL| support
+ bsd BSD system (not macOS, use "mac" for that).
iconv Can use |iconv()| for conversion.
+shellslash Can use backslashes in filenames (Windows)
clipboard |clipboard| provider is available.
+ mac MacOS system.
nvim This is Nvim.
python2 Legacy Vim |python2| interface. |has-python|
python3 Legacy Vim |python3| interface. |has-python|
@@ -4981,6 +4983,7 @@ has({feature}) Returns 1 if {feature} is supported, 0 otherwise. The
unix Unix system.
*vim_starting* True during |startup|.
win32 Windows system (32 or 64 bit).
+ win64 Windows system (64 bit).
wsl WSL (Windows Subsystem for Linux) system
*has-patch*