CudaText plugin history:VS Code supports simple word-based suggestions. They are useful when a language service isn't available or when a language service cannot compute results, like when typing inside comments. With this release, VS Code can now be configured to suggest words from other open files. Use the editor.wordBasedSuggestionsMode setting with allDocuments to suggest words from all open files, use matchingDocuments to suggest words from open files of the same language (default), and use currentDocument to only suggest words from the current file.
2021.01.16
+ add: option "what_editors" to choose documents to read: current document, all opened documents, all opened documents with the same lexer
+ add: option "max_lines"
+ add: options "no_comments", "no_strings" (boolean)
+ add: speedup the word finding by using API EDACTION_FIND_ALL
I wanted to make this as built-in CudaText feature but now I rethinked, it's ok inside a plugin, speed of word search is good, for huge documents plugin will skip them by "max_lines".