aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/log.lua
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2021-01-27 15:09:02 +0100
committerMatthieu Coudron <mcoudron@hotmail.com>2021-01-31 00:18:22 +0100
commit3f81f5c7a451f93a48103af4f1c31fd5f31d687f (patch)
treea9759c653289a1f4f0a7f145ec72b7e95e4219b3 /runtime/lua/vim/lsp/log.lua
parent8950f4e94af1534852cab5f41066d7c21330bd64 (diff)
downloadrneovim-3f81f5c7a451f93a48103af4f1c31fd5f31d687f.tar.gz
rneovim-3f81f5c7a451f93a48103af4f1c31fd5f31d687f.tar.bz2
rneovim-3f81f5c7a451f93a48103af4f1c31fd5f31d687f.zip
feat: adds vim.notify
Adds function to notify the user like this: `:lua vim.notify("hello user")` embeds log levels vim.log.levels. you can then reassign vim.notify to for instance ``` function notify_external(msg, log_level, opts) vim.fn.jobstart({"notify-send", msg }) end ```
Diffstat (limited to 'runtime/lua/vim/lsp/log.lua')
-rw-r--r--runtime/lua/vim/lsp/log.lua8
1 files changed, 1 insertions, 7 deletions
diff --git a/runtime/lua/vim/lsp/log.lua b/runtime/lua/vim/lsp/log.lua
index b6e91e37b9..4e8d2d4202 100644
--- a/runtime/lua/vim/lsp/log.lua
+++ b/runtime/lua/vim/lsp/log.lua
@@ -10,13 +10,7 @@ local log = {}
-- Can be used to lookup the number from the name or the name from the number.
-- Levels by name: 'trace', 'debug', 'info', 'warn', 'error'
-- Level numbers begin with 'trace' at 0
-log.levels = {
- TRACE = 0;
- DEBUG = 1;
- INFO = 2;
- WARN = 3;
- ERROR = 4;
-}
+log.levels = vim.log.levels
-- Default log level is warn.
local current_log_level = log.levels.WARN