mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #16975 from dstein64/vim-8.2.3917
vim-patch:8.2.3917: the eval.txt help file is way too big
This commit is contained in:
commit
d7d015ffff
8697
runtime/doc/builtin.txt
Normal file
8697
runtime/doc/builtin.txt
Normal file
File diff suppressed because it is too large
Load Diff
8681
runtime/doc/eval.txt
8681
runtime/doc/eval.txt
File diff suppressed because it is too large
Load Diff
@ -129,6 +129,7 @@ Advanced editing ~
|
||||
|diff.txt| working with two to eight versions of the same file
|
||||
|autocmd.txt| automatically executing commands on an event
|
||||
|eval.txt| expression evaluation, conditional commands
|
||||
|builtin.txt| builtin functions
|
||||
|fold.txt| hide (fold) ranges of lines
|
||||
|lua.txt| Lua API
|
||||
|api.txt| Nvim API via RPC, Lua and VimL
|
||||
|
@ -17,9 +17,9 @@ an idea of what lurks beneath: >
|
||||
:lua print(vim.inspect(package.loaded))
|
||||
|
||||
Nvim includes a "standard library" |lua-stdlib| for Lua. It complements the
|
||||
"editor stdlib" (|functions| and Ex commands) and the |API|, all of which can
|
||||
be used from Lua code. A good overview of using Lua in neovim is given by
|
||||
https://github.com/nanotee/nvim-lua-guide.
|
||||
"editor stdlib" (|builtin-functions| and Ex commands) and the |API|, all of
|
||||
which can be used from Lua code. A good overview of using Lua in neovim is
|
||||
given by https://github.com/nanotee/nvim-lua-guide.
|
||||
|
||||
Module conflicts are resolved by "last wins". For example if both of these
|
||||
are on 'runtimepath':
|
||||
|
@ -549,7 +549,7 @@ A "&" character is prepended to "path", thus the argument to eval() is
|
||||
|
||||
Vim defines many functions and provides a large amount of functionality that
|
||||
way. A few examples will be given in this section. You can find the whole
|
||||
list here: |functions|.
|
||||
list below: |function-list|.
|
||||
|
||||
A function is called with the ":call" command. The parameters are passed in
|
||||
between parentheses separated by commas. Example: >
|
||||
@ -588,8 +588,8 @@ after the substitute() call.
|
||||
FUNCTIONS *function-list*
|
||||
|
||||
There are many functions. We will mention them here, grouped by what they are
|
||||
used for. You can find an alphabetical list here: |functions|. Use CTRL-] on
|
||||
the function name to jump to detailed help on it.
|
||||
used for. You can find an alphabetical list here: |builtin-function-list|.
|
||||
Use CTRL-] on the function name to jump to detailed help on it.
|
||||
|
||||
String manipulation: *string-functions*
|
||||
nr2char() get a character by its number value
|
||||
|
@ -5,7 +5,7 @@
|
||||
-- null_spec.lua
|
||||
-- operators_spec.lua
|
||||
--
|
||||
-- Tests for the Vimscript |functions| library should live in:
|
||||
-- Tests for the Vimscript |builtin-functions| library should live in:
|
||||
-- test/functional/vimscript/<funcname>_spec.lua
|
||||
-- test/functional/vimscript/functions_spec.lua
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
-- Tests for misc Vimscript |functions|.
|
||||
-- Tests for misc Vimscript |builtin-functions|.
|
||||
--
|
||||
-- If a function is non-trivial, consider moving its spec to:
|
||||
-- test/functional/vimscript/<funcname>_spec.lua
|
||||
|
Loading…
Reference in New Issue
Block a user