diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-06 23:05:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 23:05:44 +0800 |
commit | 24d56116f70fff655282169ad010298349e0023b (patch) | |
tree | b1762ed1fb426490c09b3707aabf277ce09daae2 /runtime/doc | |
parent | 72a04bda90ddb1a333727926f74d0721a7fb45e7 (diff) | |
parent | 80e6f81862d943b2d31639a0e437b6abdff3373c (diff) | |
download | rneovim-24d56116f70fff655282169ad010298349e0023b.tar.gz rneovim-24d56116f70fff655282169ad010298349e0023b.tar.bz2 rneovim-24d56116f70fff655282169ad010298349e0023b.zip |
Merge pull request #17623 from zeertzjq/lua-editor-mentions
docs(lua): reference runtime/lua/vim/_editor.lua
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/develop.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index 178b0dc62b..cc146fcf6e 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -204,7 +204,7 @@ Docstring format: - Use `<pre>` for code samples. Example: the help for |vim.paste()| is generated from a docstring decorating -vim.paste in src/nvim/lua/vim.lua like this: > +vim.paste in runtime/lua/vim/_editor.lua like this: > --- Paste handler, invoked by |nvim_paste()| when a conforming UI --- (such as the |TUI|) pastes text into the editor. |