diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-07-17 16:32:56 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2023-07-17 16:32:56 +0100 |
commit | 69d49727d7766d799aa1989bf67e763258b868e6 (patch) | |
tree | 7ae25f0020d184cb80ba1f55874c8e4d57e6adec /runtime/lua/vim/_meta/regex.lua | |
parent | e6e0bc225b14f135e2270f3bacd5fb8ebf7e3792 (diff) | |
download | rneovim-69d49727d7766d799aa1989bf67e763258b868e6.tar.gz rneovim-69d49727d7766d799aa1989bf67e763258b868e6.tar.bz2 rneovim-69d49727d7766d799aa1989bf67e763258b868e6.zip |
fix: luacheck
Diffstat (limited to 'runtime/lua/vim/_meta/regex.lua')
-rw-r--r-- | runtime/lua/vim/_meta/regex.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/regex.lua b/runtime/lua/vim/_meta/regex.lua index 0af1bccea5..4bca67797a 100644 --- a/runtime/lua/vim/_meta/regex.lua +++ b/runtime/lua/vim/_meta/regex.lua @@ -1,5 +1,7 @@ --- @meta +-- luacheck: no unused args + --- @defgroup vim.regex --- --- @brief Vim regexes can be used directly from Lua. Currently they only allow @@ -13,7 +15,7 @@ function vim.regex(re) end --- @class vim.regex -local regex = {} +local regex = {} -- luacheck: no unused --- Match the string against the regex. If the string should match the regex --- precisely, surround the regex with `^` and `$`. If the was a match, the |