You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error detected while processing BufEnter Autocommands for "*":
Error executing lua callback: .../start/navigator.lua/lua/navigator/lspclient/clients.lua:530: E474: Invalid argument
stack traceback:
[C]: in function 'nvim_buf_set_option'
.../start/navigator.lua/lua/navigator/lspclient/clients.lua:530: in function 'setup'
.../start/navigator.lua/lua/navigator/lspclient/clients.lua:643: in function 'on_filetype'
...m/site/pack/packer/start/navigator.lua/lua/navigator.lua:308: in function <...m/site/pack/packer/start/navigator.lua/lua/navigator.lua:307>
Fix would be to identify any colons in the extension and calculate the ext variable to be just the extension and not also the line number
local ext = vfn.expand('%:e')
if string.match(ext, ":") then
ext = string.match(ext,"(.*);")
end
The text was updated successfully, but these errors were encountered:
When opening a file:
Fix would be to identify any colons in the extension and calculate the ext variable to be just the extension and not also the line number
The text was updated successfully, but these errors were encountered: