Open ned-si opened 2 years ago
At this point code actions need to be added into Neovim it seems: https://github.com/neovim/nvim-lspconfig/pull/863 , I don't know if that can be addressed by ltex-ls
or not?
grammar-guard.nvim seems dead, it would be great if someone could continue the work and merge some functionality into https://github.com/neovim/nvim-lspconfig
Thanks for the feedback. I tried to follow the different threads but must say that I'm not sure I understand the state of everything atm.
Good point. As it seems that the code actions making a change in the document itself work, but not the ones that try to make a change in the config file, could it be related to the fact that ltex-ls
doesn't seem to be able to dynamically update a local dictionary?
I am sorry if it actually can and I'm just talking nonsense...
I use this workaround, you can add words to your normal Neovim spelling directory and ltex-ls will use them. Not perfect, but works!
-- add vim user dictionary for ltex-ls
local path = vim.fn.stdpath 'config' .. '/spell/en.utf-8.add'
local words = {}
for word in io.open(path, 'r'):lines() do
table.insert(words, word)
end
lspconfig.ltex.setup {
on_attach = on_attach,
settings = {
ltex = {
dictionary = {
['en-US'] = words,
['en-GB'] = words,
},
},
},
}
Well actually it's a pretty nice way of using built-in neovim capabilities, thanks!
Hopefully the other code actions will be available soon. Should I already close the issue then?
Based on the work-around @David-Else provided in the comment above, I added a local dictionary capability. The VS Code extension version creates ltex.dictionary.en-US.txt
file under .vscode/
directory and adds the word to this text file, by default, when add-to-dictionary option is selected in VS Code. Based on this behavior, I come up with the following solution. The code snippet vim.fn.expand("%:p:h")
gets the absolute path of the Neovim buffer, so the provided solution looks for a .vscode/ltex.dictionary.en-US.txt
hierarchy in the same directory. Then, the lines in both global user dictionary and local dictionary are utilized if these paths are valid. You can change/add different paths as well. One of the caveats is that the provided solution is not dynamic as in the VS Code extension, i.e., if you update the dictionary .txt
file, you need to restart Neovim. This problem can be prevented by defining an autocmd
to revaluate the table of words.
local paths = {
vim.fn.stdpath("config") .. "/spell/ltex.dictionary.en-US.txt",
vim.fn.expand("%:p:h") .. "/.vscode/ltex.dictionary.en-US.txt",
}
local words = {}
for _, path in ipairs(paths) do
local f = io.open(path)
if f then
for word in f:lines() do
table.insert(words, word)
end
f:close()
end
end
lspconfig.ltex.setup {
on_attach = on_attach,
settings = {
ltex = {
dictionary = {
['en-US'] = words,
['en-GB'] = words,
},
},
},
}
See #171
Based on David-Else's work around, I added the following configuration to LunarVim and it works.
local dictionary_file_path = os.getenv "LUNARVIM_CONFIG_DIR" .. "/spell/en.utf-8.add"
local words = {}
for word in io.lines(dictionary_file_path) do
table.insert(words, word)
end
local ltex_opts = {
settings = {
ltex = {
dictionary = {
["en-US"] = words
},
}
}
}
require("lvim.lsp.manager").setup("ltex", ltex_opts)
I use the environment variable LUNARVIM_CONFIG_DIR
instead of vim.fn.stdpath 'config'
,
since the latter returns ~/.config/nvim
instead of ~/.config/lvim
under LunarVim.
ltex_extra.nvim provide code actions for add to dictionary
, disable rules
and hidde false positives
under NeoVim.
There is vigoux/ltex-ls.nvim as well, with similar features.
Describe the bug In neovim, code actions work when choosing one of the "correction" option, but not when choosing one of the following:
Add <word> to dictionary
Hide false positives
Disable rule
Steps to reproduce Steps to reproduce the behavior:
CustomWord is not a word
CustomWord
is rightly marked as not a correct word:lua vim.lsp.buf.code_action()
5: Add 'CustomWord' to dictionary
Expected behavior I expect it to add the
CustomWord
to dictionary and remove errors linked to it in the rest of the document, without having to manually add the word in the configuration.Sample document
LTeX configuration I'm using it in neovim with
lspconfig
andnvim-lsp-installer
with the default config, just calling it:LTeX LS log No error log unfortunately.
Version information
Linux <hostname> 5.18.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 09 Jun 2022 16:14:10 +0000 x86_64 GNU/Linux