diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-19 18:04:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-19 18:04:08 -0700 |
commit | 019c8d13dd7056725c0715dc15e451118b767b7d (patch) | |
tree | 09b58913672d5a3a3c3f920f45e6ac7d295bed25 /runtime | |
parent | 06a6828f01638d7f1fed012b494d93eb5f1c206d (diff) | |
download | rneovim-019c8d13dd7056725c0715dc15e451118b767b7d.tar.gz rneovim-019c8d13dd7056725c0715dc15e451118b767b7d.tar.bz2 rneovim-019c8d13dd7056725c0715dc15e451118b767b7d.zip |
build/doc/CI: remove/update quickbuild references #11258
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/if_lua.txt | 4 | ||||
-rw-r--r-- | runtime/doc/intro.txt | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/runtime/doc/if_lua.txt b/runtime/doc/if_lua.txt index 0ba35aeae6..8528085f47 100644 --- a/runtime/doc/if_lua.txt +++ b/runtime/doc/if_lua.txt @@ -361,7 +361,7 @@ Note that underscore-prefixed functions (e.g. "_os_proc_children") are internal/private and must not be used by plugins. ------------------------------------------------------------------------------ -VIM.API *lua-api* +VIM.API *lua-api* *vim.api* `vim.api` exposes the full Nvim |API| as a table of Lua functions. @@ -371,7 +371,7 @@ Example: to use the "nvim_get_current_line()" API function, call print(tostring(vim.api.nvim_get_current_line())) ------------------------------------------------------------------------------ -VIM.LOOP *lua-loop* +VIM.LOOP *lua-loop* *vim.loop* `vim.loop` exposes all features of the Nvim event-loop. This is a low-level API that provides functionality for networking, filesystem, and process diff --git a/runtime/doc/intro.txt b/runtime/doc/intro.txt index 887ef764bd..3292489eda 100644 --- a/runtime/doc/intro.txt +++ b/runtime/doc/intro.txt @@ -378,11 +378,11 @@ notation meaning equivalent decimal value(s) ~ <kEqual> keypad = *keypad-equal* <kEnter> keypad Enter *keypad-enter* <k0> - <k9> keypad 0 to 9 *keypad-0* *keypad-9* -<S-...> shift-key *shift* *<S-* -<C-...> control-key *control* *ctrl* *<C-* -<M-...> alt-key or meta-key *META* *ALT* *<M-* -<A-...> same as <M-...> *<A-* -<D-...> command-key or "super" key *<D-* +<S-…> shift-key *shift* *<S-* +<C-…> control-key *control* *ctrl* *<C-* +<M-…> alt-key or meta-key *META* *ALT* *<M-* +<A-…> same as <M-…> *<A-* +<D-…> command-key or "super" key *<D-* ----------------------------------------------------------------------- Note: The shifted cursor keys, the help key, and the undo key are only |