aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-08-30 17:15:21 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-08-30 17:20:53 -0400
commit7ee94d2dd7ad7c67bb6204fc6b563d2d856b4d58 (patch)
tree34acd67cb21900d84828be0e764379fb5c635f3d
parent79b6ab21d84803dd37da9ec8d5a1c32a79b401cd (diff)
downloadrneovim-7ee94d2dd7ad7c67bb6204fc6b563d2d856b4d58.tar.gz
rneovim-7ee94d2dd7ad7c67bb6204fc6b563d2d856b4d58.tar.bz2
rneovim-7ee94d2dd7ad7c67bb6204fc6b563d2d856b4d58.zip
doc: termopen(): remove 'name' feature.
-rw-r--r--runtime/doc/eval.txt4
-rw-r--r--runtime/doc/various.txt3
2 files changed, 2 insertions, 5 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index a4cc81a265..33b36d57bd 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -6473,9 +6473,7 @@ termopen({cmd}[, {opts}]) {Nvim} *termopen()*
The {opts} dict is similar to the one passed to |jobstart()|,
but the `pty`, `width`, `height`, and `TERM` fields are
ignored: `height`/`width` are taken from the current window
- and `$TERM` is set to "xterm-256color", and it may have a
- `name` field. `name`, if present, sets the buffer's name to
- "term://{cwd}/{pid}:{name}".
+ and `$TERM` is set to "xterm-256color".
Returns the same values as |jobstart()|.
See |nvim-terminal-emulator| for more information.
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index 5fb6dac402..6b53b8e24f 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -212,8 +212,7 @@ g8 Print the hex values of the bytes used in the
equivalent to: >
:enew
- :call termopen([&sh, &shcf, '{cmd}'],
- \{'name':'{cmd}'})
+ :call termopen([&sh, &shcf, '{cmd}'])
:startinsert
<
If no {cmd} is given, 'shellcmdflag' will not be sent