aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/gui.txt
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-06-26 00:57:22 -0400
committerMichael Reed <m.reed@mykolab.com>2015-07-04 15:43:54 -0400
commitcadf93e6fc073d791bfa2b7a08a931be6d1b8a9f (patch)
tree317af2f63a72f0ba94d94e4ebb3b85976f6d53cf /runtime/doc/gui.txt
parentfab635f858ff90103c045f6f395ce6baf8c7ac3f (diff)
downloadrneovim-cadf93e6fc073d791bfa2b7a08a931be6d1b8a9f.tar.gz
rneovim-cadf93e6fc073d791bfa2b7a08a931be6d1b8a9f.tar.bz2
rneovim-cadf93e6fc073d791bfa2b7a08a931be6d1b8a9f.zip
Remove 'guipty' references
Presumably due to tarruda's unifdefing, it was already a no-op at the time of nvim's first commit. It's probably better to be clear that it doesn't exist, as opposed to users thinking `:set guipty` is doing something when it isn't.
Diffstat (limited to 'runtime/doc/gui.txt')
-rw-r--r--runtime/doc/gui.txt18
1 files changed, 1 insertions, 17 deletions
diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt
index 09f2a7286a..8c87e5e4ac 100644
--- a/runtime/doc/gui.txt
+++ b/runtime/doc/gui.txt
@@ -12,7 +12,6 @@ Vim's Graphical User Interface *gui* *GUI*
4. Making GUI Selections |gui-selections|
5. Menus |menus|
6. Extras |gui-extras|
-7. Shell Commands |gui-shell|
Other GUI documentation:
|gui_w32.txt| For specific items of the Win32 GUI.
@@ -93,7 +92,7 @@ The personal initialization files are searched in the order specified above
and only the first one that is found is read.
There are a number of options which only have meaning in the GUI version of
-Vim. These are 'guicursor', 'guifont', 'guipty' and 'guioptions'. They are
+Vim. These are 'guicursor', 'guifont', and 'guioptions'. They are
documented in |options.txt| with all the other options.
Another way to set the colors for different occasions is with highlight
@@ -976,19 +975,4 @@ This section describes other features which are related to the GUI.
A recommended Japanese font is MS Mincho. You can find info here:
http://www.lexikan.com/mincho.htm
-==============================================================================
-7. Shell Commands *gui-shell*
-
-For the X11 GUI the external commands are executed inside the gvim window.
-See |gui-pty|.
-
-WARNING: Executing an external command from the X11 GUI will not always
-work. "normal" commands like "ls", "grep" and "make" mostly work fine.
-Commands that require an intelligent terminal like "less" and "ispell" won't
-work. Some may even hang and need to be killed from another terminal. So be
-careful!
-
-For the Win32 GUI the external commands are executed in a separate window.
-See |gui-shell-win32|.
-
vim:tw=78:sw=4:ts=8:ft=help:norl: