vim-fish icon indicating copy to clipboard operation
vim-fish copied to clipboard

use standard shell definition for iskeyword

Open krobelus opened this issue 6 years ago • 3 comments

Prior to this, a w would skip over the entirety of /some/long/path-name. This is probably not what users expect, since they can use W for that.

krobelus avatar Feb 11 '19 12:02 krobelus

:syntax iskeyword could be used instead, so that commands are still highlighted correctly.

adriaanzon avatar Feb 12 '19 12:02 adriaanzon

:syntax iskeyword could be used instead, so that commands are still highlighted correctly.

Cool! I tried :syntax iskeyword=@,48,57,-,_,.,/ but this seems to mess up other syntax definitions, for example in echo foo the echo used to be highlighted in a different color

krobelus avatar Feb 12 '19 16:02 krobelus

@krobelus I believe you need to replace the = with a space.

blankname avatar Mar 22 '20 17:03 blankname