diff options
author | ii14 <59243201+ii14@users.noreply.github.com> | 2022-05-03 16:49:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 08:49:23 -0600 |
commit | 70e2c5d10d2574b77c56d0bebeb61527876ff0b1 (patch) | |
tree | 06183b3c49b204ff7d63efb72f7e0ba2da28a3f5 /runtime/lua/vim/_editor.lua | |
parent | 73741e94867a8dedabcbd356e1e929f198c51905 (diff) | |
download | rneovim-70e2c5d10d2574b77c56d0bebeb61527876ff0b1.tar.gz rneovim-70e2c5d10d2574b77c56d0bebeb61527876ff0b1.tar.bz2 rneovim-70e2c5d10d2574b77c56d0bebeb61527876ff0b1.zip |
feat(lsp): add logging level "OFF" (#18379)
Diffstat (limited to 'runtime/lua/vim/_editor.lua')
-rw-r--r-- | runtime/lua/vim/_editor.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua index 62a7b3df13..119467de16 100644 --- a/runtime/lua/vim/_editor.lua +++ b/runtime/lua/vim/_editor.lua @@ -58,6 +58,7 @@ vim.log = { INFO = 2; WARN = 3; ERROR = 4; + OFF = 5; } } |