I'm in Vim.
I want <cword> to consider "." are a character that is part of a word (rather than a character that separates words). How do I do this?
Add it to the iskeyword
option. For example,
:set iskeyword?
iskeyword=@,48-57,_,192-255
:set iskeyword=@,48-57,_,192-255,.