diff options
author | ZyX <kp-pav@yandex.ru> | 2017-08-15 16:32:06 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-08-15 16:34:51 +0300 |
commit | 93ef823f5e5347e685b4a69fff487278d0b4ed87 (patch) | |
tree | d9ef1fe4379c8ae3b46a86e157ac89e37b43fb75 /runtime | |
parent | 96b1600bc822d72f5a1defa1dafda562ff208b7e (diff) | |
download | rneovim-93ef823f5e5347e685b4a69fff487278d0b4ed87.tar.gz rneovim-93ef823f5e5347e685b4a69fff487278d0b4ed87.tar.bz2 rneovim-93ef823f5e5347e685b4a69fff487278d0b4ed87.zip |
lua/executor: Move stricmp to vim “module” and document it
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/if_lua.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/if_lua.txt b/runtime/doc/if_lua.txt index c4efd57b45..515864555b 100644 --- a/runtime/doc/if_lua.txt +++ b/runtime/doc/if_lua.txt @@ -246,6 +246,11 @@ Lua interfaces Vim through the "vim" module. Currently it only has `api` submodule which is a table with all API functions. Descriptions of these functions may be found in |api.txt|. +vim.stricmp(a, b) *lua-vim.stricmp* + Function used for case-insensitive string comparison. Takes two + string arguments and returns 0, 1 or -1 if strings are equal, a is + greater then b or a is lesser then b respectively. + ============================================================================== 3. The luaeval function *lua-luaeval* *lua-eval* *luaeval()* |