vim-lexical
vim-lexical copied to clipboard
Build on Vim’s spell/thes/dict completion
I have filed https://github.com/vim/vim/issues/8950 and awesome @yegappan suggested POC implementation in https://github.com/yegappan/vim/commit/949c4f25b5d97c7aa71952f917b7d2c3ac604778 Now, in order to test this, I would need a function following API of https://vimhelp.org/insert.txt.html#complete-functions generating a list...
I cannot figure out what I am doing wrong. Using the thesaurus command only populates a list of the entire file. It is not suggesting only synonyms of the highlighted...
Hi! First thank you for this great plugin. It is very useful. I wonder if it is possible to mark good words for specific files? For example, if there are...
Prabir Shrestha's [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim) is compatible with vim8 and neovim. It would be nice to have a lexical/dictionary source for it. It makes use of vim8's timer feature. I know I...
I have the following format for `German` spellchecking: ``` vim command -nargs=0 German call lexical#init({ \ 'spell': 1, \ 'spelllang': ['de_20'], \ 'dictionary': ['~/.vim/spell/gerspchk.dict'], \ 'thesaurus': ['~/.vim/thesaurus/openthesaurus.txt'], \ 'spellfile': ['~/.vim/spell/de.utf-8.add'],...
I have lexical enabled for markdown and text files, along with litecorrect. Everything works as long as I don't pause typing for too long. If I do pause mid-word, lexical...
Related to #10, where neocomplete will process file specified by dictionary at load time, causing a 3-4 second delay per buffer when _lexical#init()_ is called. Then, global load will have...
i get completions for synonyms but they are split by whitespace so that for example a line `foo;foo bar;bar;baz` would produce these completions for `foo`: `['foo', 'bar', 'bar', 'baz']`. It...
The current one if `«CTRL-X» «CTRL-K»`. In my eyes `«CTRL-X» «CTRL-D» (for **D**ictionary) would be more suitable. What do you think? Bests from Berlin.