| /vim-8.2.3635/src/testdir/ |
| H A D | test_listchars.vim | 12 set listchars+=tab:>-,space:.,trail:< 118 set listchars+=lead:>,trail:<,space:x 176 set listchars+=space:x,multispace:XyY 236 " Non-breaking space 325 call assert_fails('set listchars=space:,space:x', 'E474:') 326 call assert_fails('set listchars=space:x,space:', 'E474:') 357 set listchars=eol:$,space:_,nbsp:= 393 setlocal listchars=space:.,extends:> 397 setlocal listchars=space:.,extends:> 401 setlocal listchars=space:.,extends:> [all …]
|
| H A D | test_matchfuzzy.vim | 32 " preference for match after a separator (_ or space) 49 " match multiple words (separated by space) 118 " preference for match after a separator (_ or space) 127 " match multiple words (separated by space) 166 " match multiple words (separated by space) 173 " preference for complete match then match after separator (_ or space) 176 " preference for match after a separator (_ or space) 214 " match multiple words (separated by space) 223 " preference for match after a separator (_ or space)
|
| H A D | test_vim9_expr.vim | 107 # check white space 171 let msg = "White space required before and after '?'" 182 let msg = "White space required before and after ':'" 240 var msg = "White space required before and after '??'" 356 # check white space 374 var msg = "White space required before and after '||'" 489 # check white space 1016 # check missing white space 1269 # check white space 1554 # check white space [all …]
|
| H A D | test_shell.vim | 224 let $SHELL = 'C:\with space\cmd.exe' 225 let expected = '"C:\with space\cmd.exe"' 227 let $SHELL = '/bin/with space/sh' 228 let expected = '/bin/with\ space/sh'
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | indent.vim | 63 \ -cs --space-after-cast 73 \ -lps --leave-preprocessor-space 87 \ -ncs --no-space-after-casts 101 \ -nsaf --no-space-after-for 102 \ -nsai --no-space-after-if 103 \ -nsaw --no-space-after-while 114 \ -prs --space-after-parentheses 116 \ -saf --space-after-for 117 \ -sai --space-after-if 118 \ -saw --space-after-while [all …]
|
| H A D | sudoers.vim | 81 syn match sudoersCmndNameInList contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:… 84 syn match sudoersCmndNameInSpec contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:… 143 syn match sudoersCommandArgs contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:],… 146 syn match sudoersCommandArgsInSpec contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:]… 289 syn match sudoersStringValue contained '[^[:space:],:=\\]*\%(\\[[:space:],:=\\][^[:space:],:=\\]… 291 syn match sudoersListValue contained '[^[:space:],:=\\]*\%(\\[[:space:],:=\\][^[:space:],:=\\]…
|
| H A D | jproperties.vim | 62 syn match jpropertiesAssignment "^\s*[^[:space:]]\+.*$" contains=jpropertiesIdentifier 64 " an identifier is anything not a space character, pretty much; it's 65 " followed by = or :, or space or tab. Or end-of-line. 66 syn match jpropertiesIdentifier "[^=:[:space:]]*" contained nextgroup=jpropertiesDelimiter 69 syn match jpropertiesDelimiter "\s*[=:[:space:]]\s*" contained nextgroup=jpropertiesString 77 syn match jpropertiesAssignment "^\s*[^=:[:space:]]\+\s*[=:].*$" contains=jpropertiesIdentifier 79 " an identifier is anything not a space character, pretty much; it's 81 syn match jpropertiesIdentifier "[^=:[:space:]]\+" contained nextgroup=jpropertiesDelimiter
|
| H A D | rust.vim | 22 …tUnionContextual /\<union\_s\+\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct… 54 …contains=rustIdentifierPrime "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct… 55 …yn match rustFuncName "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct… 163 syn match rustFloat display "\<[0-9][0-9_]*\.\%([^[:cntrl:][:space:][:punct:][:digit:]]\|… 171 …[^'\\]\|\\\(['nrt0\\\"]\|x\x\{2}\|u{\x\{1,6}}\)\)'\)\@!/ end=/[[:cntrl:][:space:][:punct:]]\@=\|$/… 172 syn region rustGenericRegion display start=/<\%('\|[^[cntrl:][:space:][:punct:]]\)\@=')\S\@=/ end=/… 173 syn region rustGenericLifetimeCandidate display start=/\%(<\|,\s*\)\@<='/ end=/[[:cntrl:][:space:][… 176 … rustLifetime display "\'\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct… 177 … rustLabel display "\'\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct… 180 … rustCharacterInvalidUnicode display contained /b'\zs[^[:cntrl:][:graph:][:alnum:][:space:]]\ze'/
|
| H A D | dosbatch.vim | 51 syn match dosbatchInteger "[[:space:]=(/:,!~-]\d\+"lc=1 52 syn match dosbatchHex "[[:space:]=(/:,!~-]0x\x\+"lc=1 53 syn match dosbatchBinary "[[:space:]=(/:,!~-]0b[01]\+"lc=1 54 syn match dosbatchOctal "[[:space:]=(/:,!~-]0\o\+"lc=1 90 " Comments - usual rem but also two colons as first non-space is an idiom
|
| H A D | ptcap.vim | 64 …syn region ptcapEntry start="^\s*[^[:space:]:]" end="[^\\]\(\\\\\)*$" end="^$" contains=ptcapNam… 66 …syn region ptcapEntry start="^\s*[^[:space:]:]"me=e-1 end="^\s*[^[:space:]:#]"me=e-1 contains=pt… 68 syn region ptcapNames start="^\s*[^[:space:]:]" skip="[^\\]\(\\\\\)*\\:" end=":"me=e-1 contains…
|
| H A D | debcontrol.vim | 78 …alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?$" 79 …alnum:]][-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?$" 80 …-[:alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?:/[^[:space:]]*%( [^[:space:]]+)?$" 81 …alnum:]]*[[:alnum:]]?)*\.[[:alpha:]][-[:alnum:]]*[[:alpha:]]?(:\d+)?(/[^[:space:]]*)?%(\s+-b\s+[^ …
|
| H A D | bindzone.vim | 29 syn match zoneOwnerName contained /^[^[:space:]!"#$%&'()*+,\/:;<=>?@[\]\^`{|}~]\+\(\s\|;\)\… 30 syn match zoneOrigin contained /[^[:space:]!"#$%&'()*+,\/:;<=>?@[\]\^`{|}~]\+\(\s\|;\|$… 31 syn match zoneDomain contained /[^[:space:]!"#$%&'()*+,\/:;<=>?@[\]\^`{|}~]\+\(\s\|;\|$…
|
| H A D | ruby.vim | 152 …=\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|xdig… 236 …M-\\c\|\\c\\M-\|\\c\|\\C-\|\\M-\)\=\%(\\\o\{1,3}\|\\x\x\{1,2}\|\\[[:space:]]\|\\\=[^[:space:]]\)\)" 332 syn match rubyAliasDeclaration "[^[:space:];#.()]\+" contained contains=rubySymbol,@rubyGlobalVaria… 333 syn match rubyAliasDeclaration2 "[^[:space:];#.()]\+" contained contains=rubySymbol,@rubyGlobalVari… 334 syn match rubyMethodDeclaration "[^[:space:];#(]\+" contained contains=rubyConstant,rubyBoolean,r… 335 syn match rubyClassDeclaration "[^[:space:];#<]\+" contained contains=rubyClassName,rubyScopeOper… 336 syn match rubyModuleDeclaration "[^[:space:];#<]\+" contained contains=rubyModuleName,rubyScopeOp… 340 …ethodName "\%([[:space:].]\|^\)\@1<=\%(\[\]=\=\|\*\*\|[-+!~]@\=\|[*/%|&^~]\|<<\|>>\|[<>]=\=\|<=>\|… 466 syn match rubySymbol "[]})\"':]\@1<!\<\%(\h\|[^\x00-\x7F]\)\%(\w\|[^\x00-\x7F]\)*[!?]\=:[[:space:],… 467 syn match rubySymbol "[[:space:],{(]\%(\h\|[^\x00-\x7F]\)\%(\w\|[^\x00-\x7F]\)*[!?]\=:[[:space:],;]…
|
| H A D | gift.vim | 96 syn match giftAnswerNum "{\_[[:space:]]*#\_[^#]\_.\{-}\(\_^\|[^\\]\)}" contained ke… 97 syn match giftAnswerNumD "{\zs\_[[:space:]]*#" contained … 105 "syn match giftQuestion "[^{[:space:]]\_.\{-}\%$" ke… 106 …syn match giftQuestion "[^{[:space:]]\_.\{-}\n\(\s*\n\)\+" ke…
|
| H A D | xslt.vim | 55 syn match xslElement '\%(xsl:\)\@<=preserve-space' 59 syn match xslElement '\%(xsl:\)\@<=strip-space'
|
| /vim-8.2.3635/runtime/autoload/xml/ |
| H A D | xsl.vim | 27 \ 'preserve-space' : [[], {'elements' : []}], 30 \ 'strip-space' : [[], {'elements' : []}], 31 …'include', 'key', 'namespace-alias', 'output', 'param', 'preserve-space', 'strip-space', 'template… 34 …'include', 'key', 'namespace-alias', 'output', 'param', 'preserve-space', 'strip-space', 'template…
|
| /vim-8.2.3635/runtime/pack/dist/opt/justify/plugin/ |
| H A D | justify.vim | 28 " If specified, alignment will only be done, if the longest space run 36 " space runs will be used to justify the text. 67 " If the line, adjusted for space runs and leading/trailing whitespace, 75 " All space runs in the line are truncated before the alignment is 78 " If you have set 'noexpandtab', :retab! is used to replace space runs 82 " If joinspaces is set, an extra space is added after '.', '?' and '!'. 83 " If 'cpooptions' include 'j', extra space is only added after '.'. 90 " most four spaces in a space run and keeping current indentation. 94 " Mappings that will remove space runs and format lines (might be useful 261 " Possible addition of space after punctuation
|
| /vim-8.2.3635/runtime/keymap/ |
| H A D | sinhala-phonetic_utf-8.vim | 106 <C-space> <char-0x00a0> " - no-break space. <S-space> didn't work. 107 <A-space> <char-0x200c> " - ZWNJ. <A-space> doesn't work!
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | zimbu.vim | 46 " Does replace when a dot, space or closing brace is typed. 49 " no space or dot after the typed text 59 " no space or other "terminating" character after the typed text 66 " Only replaces when a space is typed. 69 " no space after the typed text 79 " no space before the typed text
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | motion.txt | 418 space. An empty line is also considered to be a WORD. 427 word does not include the following white space. 527 without white space, or just the white space. Thus the "inner" commands 536 Leading or trailing white space is included, but not 543 White space between words is counted too. 556 White space between words is counted too. 602 |[(|). Does not include white space outside of the 664 none, then leading white space is included. 680 space after the object. If there is no white space after the object 682 space before the object is included. [all …]
|
| H A D | usr_04.txt | 94 You will have noticed something strange: The space before "human" isn't 99 the space after the word isn't included. This is an exception that dates back 107 existing indent (leading white space) though. 349 Notice that "yw" includes the white space after a word. If you don't want 406 space after the word is also deleted (or the white space before the word if at 435 The difference is that "as" includes the white space after the sentence and 437 space at the same time, thus use "das". If you want to type new text the 438 white space can remain, thus you use "cis". 488 diw delete word under the cursor (excluding white space) 489 daw delete word under the cursor (including white space)
|
| H A D | usr_12.txt | 212 Do not type a space after the g, this is just used here to make the command 292 space characters (\s), 1 or more of them (\+), before the end-of-line ($). 295 with nothing, effectively deleting the matched white space. 298 be deleted without changing the amount of white space. But not always! 303 You cannot see it, but there is a space before a tab in this command. Thus 304 it's "/<Space><Tab>". Now use "x" to delete the space and check that the 305 amount of white space doesn't change. You might have to insert a tab if it
|
| H A D | usr_25.txt | 122 together. A common mistake is to have a line with a space or tab. That's a 284 that it looks the same. It changes spans of white space into tabs and spaces 287 Warning: When using ":retab" on a program, it may change white space inside 474 called "virtual space". Editing a table is a lot easier this way. 488 of a white space separated word. Then "j" moves to the place where the next 504 3. Move the cursor down two lines with "2j". You are now in "virtual space": 507 the space that you want between the columns. "9l" should do it. 553 right amount of screen space. Extra spaces or tabs are inserted to fill the
|
| /vim-8.2.3635/runtime/macros/maze/ |
| H A D | maze_mac | 34 " you is a _ (otherwise it is a space). 40 " is a _ (otherwise it is a space). 88 " N2 space k N1 92 " S2 space j S1 93 " E1 space k N1 97 " W1 space j S1
|
| /vim-8.2.3635/src/ |
| H A D | gui_athena.c | 756 Dimension height, space, border; in gui_mch_add_menu() local 801 XtNvSpace, &space, in gui_mch_add_menu() 807 gui.menu_height = height + 2 * (space + border); in gui_mch_add_menu() 975 Dimension space, border; in gui_mch_new_menu_font() local 978 XtNvSpace, &space, in gui_mch_new_menu_font() 981 gui.menu_height = max_height + 2 * (space + border); in gui_mch_new_menu_font() 1508 Dimension height, space, border; in gui_mch_destroy_menu() local 1511 XtNvSpace, &space, in gui_mch_destroy_menu() 1566 gui.menu_height = height + 2 * (space + border); in gui_mch_destroy_menu()
|