what do the + signs mean in vimscript regex strings
问题 You can find this syntax being commonly used in syntax vimscripts. For example you can find it in the file <vimdir>\syntax\python.vim on line 113 in vim 7.4 (win7): syn match pythonEscape +\\[abfnrtv'"\\]+ contained My simple question is what do the + signs mean at the either end of the regex string literal? I could not find anything with :help literal-string and :help regex or steve losh's book. Where do you think I should have been looking? 回答1: They are indeed the start and end of the