aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/vim_diff.txt
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r--runtime/doc/vim_diff.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index d30b0833db..e536ea873a 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -70,6 +70,7 @@ Job control |job-control|
Remote plugins |remote-plugin|
Python plugins |provider-python|
Clipboard integration |provider-clipboard|
+XDG support
OTHER FEATURES ~
@@ -96,6 +97,9 @@ Options:
Commands:
|:CheckHealth|
+Functions:
+ |capture()|
+
Events:
|TabNew|
|TabNewEntered|
@@ -121,6 +125,11 @@ are always available and may be used simultaneously in separate plugins. The
`neovim` pip package must be installed to use Python plugins in Nvim (see
|provider-python|).
+|:!| and |system()| do not support "interactive" commands; use |:terminal| for
+that instead. Terminal Vim supports interactive |:!| and |system()|, but gui
+Vim does not. See ":help gui-pty" in Vim:
+ http://vimdoc.sourceforge.net/htmldoc/gui_x11.html#gui-pty
+
|mkdir()| behaviour changed:
1. Assuming /tmp/foo does not exist and /tmp can be written to
mkdir('/tmp/foo/bar', 'p', 0700) will create both /tmp/foo and /tmp/foo/bar