diff options
author | shadmansaleh <shadmansaleh3@gmail.com> | 2021-06-12 12:10:05 +0600 |
---|---|---|
committer | shadmansaleh <shadmansaleh3@gmail.com> | 2021-06-13 00:27:52 +0600 |
commit | 1f280b582f32c8ab7de41a34472fb856d5d2f7c4 (patch) | |
tree | b33909d0982ebd681800590c95d9b78987215794 /runtime | |
parent | d3bdde0bad12458128fae817aa348ac1d07b6f35 (diff) | |
download | rneovim-1f280b582f32c8ab7de41a34472fb856d5d2f7c4.tar.gz rneovim-1f280b582f32c8ab7de41a34472fb856d5d2f7c4.tar.bz2 rneovim-1f280b582f32c8ab7de41a34472fb856d5d2f7c4.zip |
fixup(runtime): Fix lua runtime files not listed
lua runtime files weren't listed in :scriptname & profiler.
This fixes that.
* Add tests
* Small doc tweeks
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index bf94383ec4..9ee1954514 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -831,16 +831,16 @@ ShellFilterPost After executing a shell command with ":{range}!cmd", ":w !cmd" or ":r !cmd". Can be used to check for any changed files. *SourcePre* -SourcePre Before sourcing a Vim script. |:source| +SourcePre Before sourcing a vim/lua file. |:source| <afile> is the name of the file being sourced. *SourcePost* -SourcePost After sourcing a Vim script. |:source| +SourcePost After sourcing a vim/lua file. |:source| <afile> is the name of the file being sourced. Not triggered when sourcing was interrupted. Also triggered after a SourceCmd autocommand was triggered. *SourceCmd* -SourceCmd When sourcing a Vim script. |:source| +SourceCmd When sourcing a vim/lua file. |:source| <afile> is the name of the file being sourced. The autocommand must source this file. |Cmd-event| |