diff options
author | watiko <service@mail.watiko.net> | 2015-11-27 23:56:52 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2015-11-28 17:22:28 +0900 |
commit | 119545190c1ec35e1c7b482f593b98d0fc485b6f (patch) | |
tree | 6a31debeb4826dd8c0e5f758d21ff5db25e66731 /runtime/doc/eval.txt | |
parent | b9139e009f3eb833ab57e73d1ecdbe68752112fe (diff) | |
download | rneovim-119545190c1ec35e1c7b482f593b98d0fc485b6f.tar.gz rneovim-119545190c1ec35e1c7b482f593b98d0fc485b6f.tar.bz2 rneovim-119545190c1ec35e1c7b482f593b98d0fc485b6f.zip |
vim-patch:7.4.786
Problem: It is not possible for a plugin to adjust to a changed setting.
Solution: Add the OptionSet autocommand event. (Christian Brabandt)
https://github.com/vim/vim/commit/537443018d41918639695a442c91b34ccec69fc3
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 7b12d2082f..4ff0636b61 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1535,6 +1535,15 @@ v:oldfiles List of file names that is loaded from the |shada| file on than String this will cause trouble. {only when compiled with the |+shada| feature} + *v:option_new* +v:option_new New value of the option. Valid while executing an |OptionSet| + autocommand. + *v:option_old* +v:option_old Old value of the option. Valid while executing an |OptionSet| + autocommand. + *v:option_type* +v:option_type Scope of the set command. Valid while executing an + |OptionSet| autocommand. Can be either "global" or "local" *v:operator* *operator-variable* v:operator The last operator given in Normal mode. This is a single character except for commands starting with <g> or <z>, |