spelunker.vim
spelunker.vim copied to clipboard
Improved vim spelling plugin (with camel case support)!
It would be great if we could manage a custom dictionary of common words we use, like abbreviations or names. We should be able to, say, put a list of...
Thanks for the awesome plugin. I would like to remap the current mappings with something else, say `Zl` to `zl` Is it possible to provide such remapping capabilties ? If...
Fix for https://github.com/kamykn/spelunker.vim/issues/69. In keymaps, it has extra space between two command calls (like `:COMMAND :COMMAND`). This was considered as cursor move by one character.
Tweak for https://github.com/kamykn/spelunker.vim/issues/67.
Spelunker is very slow if used for large files O(10MiB). I feel like I prefer to use `g:spelunker_check_type = 1` for most small-ish files. Only huge logs cause issues. Please...
For performance improvement, ignore too large buffer until buffer-specific spellcheck (`Zt`) is triggered. Just an idea for https://github.com/kamykn/spelunker.vim/issues/71. May need some more tweaks. Introduces a new option `g:spelunker_buffer_size_threshold`.
Care for https://github.com/kamykn/spelunker.vim/issues/63. Unknown why, sometimes spellcheck highlight `SpelunkerSpellBad` and `SpelunkerComplexOrCompoundWord` can be cleared. So, changed to set the highlightings on every spellcheck enabling. Also, consider highlight cleared case (e.g....
Hello! Thanks for making this, it's been so useful - spell checking that doesn't account for camelCase is useless to me, so it's so nice to have spell checking again...
Sometimes spell check styles unexpectedly remains. Spelunker manages `match()` styles in `b:match_id_dict`, though, somehow there happens to miss some styles unmanaged, probably. For first aid, removes the spellcheck `match()` styles...
Just an information: I introduced [Spelunker enable/disable status marker support](https://github.com/vim-airline/vim-airline/pull/2462) to [vim-airline](https://github.com/vim-airline/vim-airline) (Originally vim-airline has supported only vim-standard `&spell` flag). To use it, update vim-airline and set below: ```vim let...