aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hoffmann <stefan991@gmail.com>2014-10-05 19:32:24 +0200
committerStefan Hoffmann <stefan991@gmail.com>2014-10-06 22:43:30 +0200
commit2bf085049718a163ddc71b8c02989158ca595596 (patch)
tree774b3c283f05d69dba053425597cc16b6a25e612
parent52c6727db6b2eb804188ab7cb9161c2b86b2b54b (diff)
downloadrneovim-2bf085049718a163ddc71b8c02989158ca595596.tar.gz
rneovim-2bf085049718a163ddc71b8c02989158ca595596.tar.bz2
rneovim-2bf085049718a163ddc71b8c02989158ca595596.zip
doc: remove documentation for `:shell`
see #450
-rw-r--r--runtime/doc/autocmd.txt6
-rw-r--r--runtime/doc/index.txt1
-rw-r--r--runtime/doc/quickref.txt1
-rw-r--r--runtime/doc/various.txt11
4 files changed, 6 insertions, 13 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index 734202cd6c..451e60514c 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -772,8 +772,10 @@ SessionLoadPost After loading the session file created using
the |:mksession| command.
*ShellCmdPost*
ShellCmdPost After executing a shell command with |:!cmd|,
- |:shell|, |:make| and |:grep|. Can be used to
- check for any changed files.
+ |:make| and |:grep|. Can be used to check for
+ any changed files.
+ For non-blocking shell commands, see
+ |JobActivity|.
*ShellFilterPost*
ShellFilterPost After executing a shell command with
":{range}!cmd", ":w !cmd" or ":r !cmd".
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index 5aaaa9c99f..6792acd390 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1470,7 +1470,6 @@ tag command action ~
|:sfind| :sf[ind] split current window and edit file in 'path'
|:sfirst| :sfir[st] split window and go to first file in the
argument list
-|:shell| :sh[ell] escape to a shell
|:simalt| :sim[alt] Win32 GUI: simulate Windows ALT key
|:sign| :sig[n] manipulate signs
|:silent| :sil[ent] run a command silently
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index 983626a58b..30455eb234 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -967,7 +967,6 @@ Short explanation of each option: *option-list*
------------------------------------------------------------------------------
*Q_et* External commands
-|:shell| :sh[ell] start a shell
|:!| :!{command} execute {command} with a shell
|K| K lookup keyword under the cursor with
'keywordprg' program (default: "man")
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index e4e0e89303..e032fd8723 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -221,15 +221,8 @@ g8 Print the hex values of the bytes used in the
{not available when |+ex_extra| feature was disabled
at compile time}
- *:sh* *:shell* *E371*
-:sh[ell] This command starts a shell. When the shell exits
- (after the "exit" command) you return to Vim. The
- name for the shell command comes from 'shell' option.
- *E360*
- Note: This doesn't work when Vim on the Amiga was
- started in QuickFix mode from a compiler, because the
- compiler will have set stdin to a non-interactive
- mode.
+ *:sh* *:shell* *E371* *E360*
+:sh[ell] Removed. {Nvim}
*:!cmd* *:!* *E34*
:!{cmd} Execute {cmd} with the shell. See also 'shell'.