| /vim-8.2.3635/src/testdir/ |
| H A D | test_join.vim | 241 // Should the next comment leader be left alone? 244 // Should the next comment leader be left alone? 253 if (condition) // Remove the next comment leader! 257 if (condition) // Remove the next comment leader! 335 // Should the next comment leader be left alone? 338 // Should the next comment leader be left alone? 347 if (condition) // Remove the next comment leader! 364 # bracket) is a comment leader itself. Make sure that this comment leader is 367 < retain its comment leader. 370 # bracket) is a comment leader itself. Make sure that this comment leader is [all …]
|
| H A D | test26.in | 4 3001 lines: "This is the leader" 12 This is the leader
|
| H A D | test_file_size.vim | 39 " 3001 lines: "This is the leader" 44 call append(1, repeat(["This is the leader"], 3001))
|
| H A D | test_comments.vim | 74 " Copy the trailing indentation from the leader comment to a new line 118 " Test for using a multibyte character as a comment leader
|
| /vim-8.2.3635/src/ |
| H A D | change.c | 1802 if (leader == NULL) in open_line() 1826 for (p = leader + lead_len - 1; p > leader in open_line() 1842 MB_PTR_BACK(leader, p); in open_line() 1856 while (--p >= leader) in open_line() 1879 p = skipwhite(leader); in open_line() 1980 leader[lead_len] = NUL; in open_line() 2003 ++leader; in open_line() 2083 STRCAT(leader, " "); in open_line() 2088 STRCAT(leader, p_extra); in open_line() 2089 p_extra = leader; in open_line() [all …]
|
| /vim-8.2.3635/src/libvterm/src/ |
| H A D | parser.c | 26 printf(" leader: %s\n", vt->parser.v.csi.leader); in do_csi() 37 vt->parser.v.csi.leaderlen ? vt->parser.v.csi.leader : NULL, in do_csi() 193 vt->parser.v.csi.leader[vt->parser.v.csi.leaderlen++] = c; in vterm_input_write() 198 vt->parser.v.csi.leader[vt->parser.v.csi.leaderlen] = 0; in vterm_input_write()
|
| H A D | state.c | 951 static int on_csi(const char *leader, const long args[], int argcount, const char *intermed, char c… in on_csi() argument 966 if(leader && leader[0]) { in on_csi() 967 if(leader[1]) // longer than 1 char in on_csi() 970 switch(leader[0]) { in on_csi() 973 leader_byte = leader[0]; in on_csi() 1573 if((*state->fallbacks->csi)(leader, args, argcount, intermed, command, state->fbdata)) in on_csi()
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | rust.vim | 21 " The rust source code at present seems to typically omit a leader on /*! 24 " leader), merely whether a leader is inserted by default or not.
|
| H A D | rpl.vim | 16 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | cs.vim | 17 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | aap.vim | 19 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | lua.vim | 19 " the comment leader when hitting <CR> or using "o".
|
| H A D | make.vim | 18 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | dtrace.vim | 22 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | typescript.vim | 15 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | occam.vim | 25 " Break comment lines and insert comment leader in this case
|
| H A D | mail.vim | 23 " Set 'formatoptions' to break text lines and keep the comment leader ">".
|
| H A D | java.vim | 28 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | verilog.vim | 28 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | hamster.vim | 22 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | javascript.vim | 16 " and insert the comment leader when hitting <CR> or using "o".
|
| H A D | c.vim | 21 " and insert the comment leader when hitting <CR> or using "o".
|
| /vim-8.2.3635/src/libvterm/t/ |
| H A D | harness.c | 145 static int parser_csi(const char *leader, const long args[], int argcount, const char *intermed, ch… in parser_csi() argument 150 if(leader && leader[0]) { in parser_csi() 152 for(i = 0; leader[i]; i++) in parser_csi() 153 printf("%02x", leader[i]); in parser_csi()
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | ada.vim | 579 let l:leader = g:mapleader 581 let l:leader = '\' 586 \ "<Tab>" . escape(l:leader . "a" . a:Keys , '\') . 604 let l:leader = g:mapleader 606 let l:leader = '\' 611 \ "<Tab>" . escape(l:leader . "a" . a:Keys , '\') .
|
| /vim-8.2.3635/src/libvterm/include/ |
| H A D | vterm.h | 375 …int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command… 419 …int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command…
|