delimiters?
‘iskeyword’ option as word delimitiers. The default setting for this option is “@,48-57,_,192-255”. For example, to add ‘:’ as a word delimitier, you can use :set iskeyword+=: To remove ‘_’ as a word delimitier, you can use :set iskeyword-=_ For more information, read :help ‘iskeyword’ :help word ============================================================================= SECTION 13 – COMPLETION IN INSERT MODE 13.1. How do I complete words or lines in insert mode? In insert mode, you can complete words using the CTRL-P and CTRL-N keys. The CTRL-N command searches forward for the next matching keyword. The CTRL-P command searches backwards for the next matching keyword. In insert mode, you can use the CTRL-X CTRL-L command sequence to complete lines that starts with the same characters as in the current line before the cursor. To get the next matching line, press the CTRL-P or CTRL-N keys. There are a lot of other keys/ways available to complete words in insert mode. Vim supports compl