summaryrefslogtreecommitdiff
path: root/lua/plugins/complete-word.lua
AgeCommit message (Collapse)Author
2024-03-08lua: complete-word: use internal regex for splitting wordsRandy Palamar
Internally vis supports unicode just fine. Instead of relying on external programs utilize vis' own features. Thanks to Florian Fischer for the correct regex!
2017-07-14vis-lua: make selection first class primitives in Lua APIMarc André Tanner
2017-03-05lua: reimplement word and file name completion in luaMarc André Tanner
The file name completion does not yet behave the same way as the previous C code because the completion prefix is currently simply calculated using the `iw` text object which does not handle common path elements (e.g. `.`, `/`, `~`, etc).