diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-06-11 13:04:12 +0900 |
---|---|---|
committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-08-26 12:06:07 +0900 |
commit | 3b1db74963e30ad73b364746cf589cefa778b940 (patch) | |
tree | 9e1dd850082869e0e7f41a09fe6fe02fb0ae6e9f /runtime/lua/vim/lsp.lua | |
parent | 154cbe61c44400aed924e2f793516dbdde5a3781 (diff) | |
download | rneovim-3b1db74963e30ad73b364746cf589cefa778b940.tar.gz rneovim-3b1db74963e30ad73b364746cf589cefa778b940.tar.bz2 rneovim-3b1db74963e30ad73b364746cf589cefa778b940.zip |
lsp: add key name to the output log value
Unless we look at the code every time, we will not know what the value is, so add the key name.
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 47dca40208..0cc3c01ca1 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -761,8 +761,12 @@ do text_document_did_change_handler = function(_, bufnr, changedtick, firstline, lastline, new_lastline, old_byte_size, old_utf32_size, old_utf16_size) - local _ = log.debug() and log.debug("on_lines", bufnr, changedtick, firstline, - lastline, new_lastline, old_byte_size, old_utf32_size, old_utf16_size, nvim_buf_get_lines(bufnr, firstline, new_lastline, true)) + + local _ = log.debug() and log.debug( + string.format("on_lines bufnr: %s, changedtick: %s, firstline: %s, lastline: %s, new_lastline: %s, old_byte_size: %s, old_utf32_size: %s, old_utf16_size: %s", + bufnr, changedtick, firstline, lastline, new_lastline, old_byte_size, old_utf32_size, old_utf16_size), + nvim_buf_get_lines(bufnr, firstline, new_lastline, true) + ) -- Don't do anything if there are no clients attached. if tbl_isempty(all_buffer_active_clients[bufnr] or {}) then |