diff options
author | Amirreza Askarpour <raskarpour@gmail.com> | 2021-05-30 08:39:30 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 00:09:30 -0400 |
commit | 3cd688ff775a50808eb7d260e540038cc32b4a40 (patch) | |
tree | e6a67f88abb1a667349b5704cf104d8c62df517a | |
parent | cabf8ab26b21c295355b8024ad6533fe0a675c5e (diff) | |
download | rneovim-3cd688ff775a50808eb7d260e540038cc32b4a40.tar.gz rneovim-3cd688ff775a50808eb7d260e540038cc32b4a40.tar.bz2 rneovim-3cd688ff775a50808eb7d260e540038cc32b4a40.zip |
fix vim.opt:remove doc (#14664)
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index f8d7a4e7c5..c3893d05c0 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1053,7 +1053,7 @@ Option:prepend(value) *vim.opt:remove()* Option:remove(value) - Remove a value to string-style options. See |:set-=| + Remove a value from string-style options. See |:set-=| These are equivalent: `vim.opt.wildignore:remove('*.pyc')` |