diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-26 15:03:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 15:03:07 +0200 |
commit | 30915cc8b0e8b92cb83a23833c7a1116e20c055d (patch) | |
tree | 83d82ea8e54de3d2b8c29218da465af679ea6845 /runtime | |
parent | 497046466e4a969cefce5fc2b7992dde157aa1a5 (diff) | |
parent | 8a73e60eb97a0402caf57986ece1e87b7365ae00 (diff) | |
download | rneovim-30915cc8b0e8b92cb83a23833c7a1116e20c055d.tar.gz rneovim-30915cc8b0e8b92cb83a23833c7a1116e20c055d.tar.bz2 rneovim-30915cc8b0e8b92cb83a23833c7a1116e20c055d.zip |
Merge pull request #18306 from lewis6991/fnfast
feat(lua): allow some viml functions to run in fast
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index b551552c03..dd1843ade3 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1038,6 +1038,8 @@ vim.fn.{func}({...}) *vim.fn* Note: vim.fn keys are generated lazily, thus `pairs(vim.fn)` only enumerates functions that were called at least once. + Note: The majority of functions cannot run in |api-fast| callbacks with some + undocumented exceptions which are allowed. *lua-vim-variables* The Vim editor global dictionaries |g:| |w:| |b:| |t:| |v:| can be accessed |