diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-26 18:26:10 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-07-03 03:53:42 -0400 |
commit | 6e2c02bc6debd17e9bbbc20f1c657770b265d658 (patch) | |
tree | 6b7b5958b79ba338b8ebdc0d65ade93fbbd02e1f /runtime/doc/vim_diff.txt | |
parent | b23b561329d557d7e272b84d8c553fdd70be3ca1 (diff) | |
download | rneovim-6e2c02bc6debd17e9bbbc20f1c657770b265d658.tar.gz rneovim-6e2c02bc6debd17e9bbbc20f1c657770b265d658.tar.bz2 rneovim-6e2c02bc6debd17e9bbbc20f1c657770b265d658.zip |
doc
Closes #4777
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r-- | runtime/doc/vim_diff.txt | 9 |
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 |