diff options
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/options.txt | 21 | ||||
-rw-r--r-- | runtime/doc/quickref.txt | 1 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 3 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 9 |
4 files changed, 7 insertions, 27 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 65908f910f..e9cb8350cf 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -3174,8 +3174,7 @@ A jump table for the options with a short description can be found at |Q_op|. < For Mac OSX you can use something like this: > :set guifont=Monaco:h10 -< Also see 'macatsui', it can help fix display problems. - *E236* +< *E236* Note that the fonts must be mono-spaced (all characters have the same width). An exception is GTK 2: all fonts are accepted, but mono-spaced fonts look best. @@ -4320,20 +4319,7 @@ A jump table for the options with a short description can be found at |Q_op|. reset this option. |-u| |--noplugin| *'macatsui'* *'nomacatsui'* -'macatsui' boolean (default on) - global - {only available in Mac GUI version} - This is a workaround for when drawing doesn't work properly. When set - and compiled with multi-byte support ATSUI text drawing is used. When - not set ATSUI text drawing is not used. Switch this option off when - you experience drawing problems. In a future version the problems may - be solved and this option becomes obsolete. Therefore use this method - to unset it: > - if exists('&macatsui') - set nomacatsui - endif -< Another option to check if you have drawing problems is - 'termencoding'. +'macatsui' Removed. |vim-differences| {Nvim} *'magic'* *'nomagic'* 'magic' boolean (default on) @@ -6594,8 +6580,7 @@ A jump table for the options with a short description can be found at |Q_op|. Encoding used for the terminal. This specifies what character encoding the keyboard produces and the display will understand. For the GUI it only applies to the keyboard ( 'encoding' is used for the - display). Except for the Mac when 'macatsui' is off, then - 'termencoding' should be "macroman". + display). In the Win32 console version the default value is the console codepage when it differs from the ANSI codepage. *E617* diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt index 7e8af669be..0e53099c5d 100644 --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -766,7 +766,6 @@ Short explanation of each option: *option-list* 'list' show <Tab> and <EOL> 'listchars' 'lcs' characters for displaying in list mode 'loadplugins' 'lpl' load plugin scripts when starting up -'macatsui' Mac GUI: use ATSUI text drawing 'magic' changes special characters in search patterns 'makeef' 'mef' name of the errorfile for ":make" 'makeprg' 'mp' program to use for the ":make" command diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 4304d51fa1..c533d717f6 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1951,9 +1951,6 @@ Awaiting updated patches: - Command-key mappings do not work. (Alan Schmitt) - With 'nopaste' pasting is wrong, with 'paste' Command-V doesn't work. (Alan Schmitt) - - remove 'macatsui' option when this has been fixed. - - when 'macatsui' is off should we always convert to "macroman" and ignore - 'termencoding'? 9 HTML indenting can be slow. Caused by using searchpair(). Can search() be used instead? A.Politz is looking into a solution. 8 Win32: Add minidump generation. (George Reilly, 2006 Apr 24) diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 05de4598c9..215b0edb94 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -110,6 +110,7 @@ MS-DOS support: 'conskey' Other options: + 'macatsui' 'shortname' 'shelltype' 'textauto' @@ -123,6 +124,9 @@ Other commands: Other compile-time features: EBCDIC +Nvim does not have a built-in GUI and hence the following aliases have been +removed: gvim, gex, gview, rgvim, rgview + "Easy mode" (eview, evim, nvim -y) "(g)vimdiff" (alias for "(g)nvim -d" |diff-mode|) "Vi mode" (nvim -v) @@ -133,13 +137,8 @@ of just using their command line arguments: ex nvim -e exim nvim -E view nvim -R - gvim nvim -g - gex nvim -eg - gview nvim -Rg rvim nvim -Z rview nvim -RZ - rgvim nvim -gZ - rgview nvim -RgZ ============================================================================== vim:tw=78:ts=8:noet:ft=help:norl: |