aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/doc/options.txt11
-rw-r--r--runtime/doc/quickref.txt1
-rw-r--r--runtime/doc/vim_diff.txt1
-rw-r--r--runtime/optwin.vim4
-rw-r--r--src/nvim/options.lua9
5 files changed, 1 insertions, 25 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index d21217148c..02fe971f6a 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -643,17 +643,6 @@ A jump table for the options with a short description can be found at |Q_op|.
compiled with the |+termresponse| feature and if |t_u7| is set to the
escape sequence to request cursor position report.
- *'antialias'* *'anti'* *'noantialias'* *'noanti'*
-'antialias' 'anti' boolean (default: off)
- global
- {only available when compiled with GUI enabled
- on Mac OS X}
- This option only has an effect in the GUI version of Vim on Mac OS X
- v10.2 or later. When on, Vim will use smooth ("antialiased") fonts,
- which can be easier to read at certain sizes on certain displays.
- Setting this option can sometimes cause problems if 'guifont' is set
- to its default (empty string).
-
*'autochdir'* *'acd'* *'noautochdir'* *'noacd'*
'autochdir' 'acd' boolean (default off)
global
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index 34e7851493..ea73b99ad2 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -600,7 +600,6 @@ Short explanation of each option: *option-list*
'allowrevins' 'ari' allow CTRL-_ in Insert and Command-line mode
'altkeymap' 'akm' for default second language (Farsi/Hebrew)
'ambiwidth' 'ambw' what to do with Unicode chars of ambiguous width
-'antialias' 'anti' Mac OS X: use smooth, antialiased fonts
'autochdir' 'acd' change directory to the file in the current window
'arabic' 'arab' for Arabic as a default second language
'arabicshape' 'arshape' do shaping for Arabic characters
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index a6cbf6f4c4..c6e98bc40c 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -195,6 +195,7 @@ Highlight groups:
|hl-VisualNOS|
Other options:
+ 'antialias'
'cpoptions' ('g', 'w', 'H', '*', '-', 'j', and all POSIX flags were removed)
'guioptions' (only the 't' flag was removed)
'guipty'
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index d1ab204180..09406f260b 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -576,10 +576,6 @@ if has("gui")
endif
call append("$", "guifontwide\tlist of font names to be used for double-wide characters")
call <SID>OptionG("gfw", &gfw)
- if has("mac")
- call append("$", "antialias\tuse smooth, antialiased fonts")
- call <SID>BinOptionG("anti", &anti)
- endif
call append("$", "guioptions\tlist of flags that specify how the GUI works")
call <SID>OptionG("go", &go)
if has("gui_gtk")
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 633eabab60..b22e994efe 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -51,15 +51,6 @@ return {
defaults={if_true={vi=224}}
},
{
- full_name='antialias', abbreviation='anti',
- type='bool', scope={'global'},
- vi_def=true,
- vim=true,
- redraw={'everything'},
- enable_if=false,
- defaults={if_true={vi=false, vim=false}}
- },
- {
full_name='arabic', abbreviation='arab',
type='bool', scope={'window'},
vi_def=true,