diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-12-16 21:33:59 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-12-26 03:58:28 +0100 |
commit | fe60fa9faafd90cfe756c80119abae6f8906fc4b (patch) | |
tree | 3d2dfa4e2e372f6e96e66d5508ad5549c1197a59 /runtime/doc/develop.txt | |
parent | 249bdb07dd3a9555972deff625d67e4ee0eddc86 (diff) | |
download | rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.tar.gz rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.tar.bz2 rneovim-fe60fa9faafd90cfe756c80119abae6f8906fc4b.zip |
doc
vim-patch:8.0.1206: no autocmd for entering or leaving the command line
(commit a4f6cec7a31ff8dbfa089b9e22227afbeb951e9b)
NA patches:
vim-patch:8.0.0320: warning for unused variable with small build
Diffstat (limited to 'runtime/doc/develop.txt')
-rw-r--r-- | runtime/doc/develop.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index 36826e2479..4e77f40035 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -270,9 +270,9 @@ External UIs are expected to implement these common features: - Send the "super" key (Windows key, Apple key) as a |<D-| chord. Implementation ~ -- Options can be monitored for changes by the |OptionSet| autocmd. E.g. if the - user sets the 'guifont' option, this autocmd notifies channel 42: > - autocmd OptionSet guifont call rpcnotify(42, 'option-changed', 'guifont', &guifont) +- UI-related options ('guifont', 'ambiwidth', …) are published in the + "option_set" |ui-global| event. The event is triggered when the UI first + connects to Nvim and whenever an option is changed by the user or a plugin. vim:tw=78:ts=8:ft=help:norl: |