Searched refs:last_line (Results 1 – 9 of 9) sorted by relevance
| /vim-8.2.3635/runtime/indent/ |
| H A D | systemverilog.vim | 50 let last_line = getline(lnum) 69 if last_line =~ '\*/\s*$' && last_line !~ '/\*.\{-}\*/' 76 elseif last_line =~ '`\@<!\<\(if\|else\)\>' || 115 \ last_line !~ '\(//\|/\*\).*\(\<begin\>\)' && 122 elseif last_line =~ '[{(]' . sv_comment . '*$' && 123 \ last_line !~ '\(//\|/\*\).*[{(]' && 130 elseif ( last_line !~ '\<begin\>' || 131 \ last_line =~ '\(//\|/\*\).*\<begin\>' ) && 165 elseif last_line =~ '^\s*`\<\(ifdef\|else\)\>' 196 \ ( last_line =~ [all …]
|
| H A D | verilog.vim | 62 let last_line = getline(lnum) 81 if last_line =~ '\*/\s*$' && last_line !~ '/\*.\{-}\*/' 91 \ last_line =~ '^\s*\<\(for\|case\%[[zx]]\)\>' || 92 \ last_line =~ '^\s*\<\(always\|initial\)\>' || 93 \ last_line =~ '^\s*\<\(specify\|fork\)\>' 110 elseif last_line =~ '^\s*\<module\>' 125 \ last_line !~ '\(//\|/\*\).*\(\<begin\>\)' && 132 elseif ( last_line !~ '\<begin\>' || 133 \ last_line =~ '\(//\|/\*\).*\<begin\>' ) && 195 \ ( last_line =~ [all …]
|
| H A D | php.vim | 334 let last_line = getline(lnum) 335 if last_line =~ '^\s*->' 691 if last_line =~ '^\s*/\*' 761 …if last_line =~ '[;}]'.endline && last_line !~ '^[)\]]' && last_line !~# s:defaultORcase && last_l… 883 let last_line = StripEndlineComments(last_line) 886 if last_line =~ terminated && last_line !~# s:defaultORcase 896 …if last_line =~# '[{(\[]'.endline || last_line =~? '\h\w*\s*(.*,$' && AntepenultimateLine !~ '[,(\… 899 …if last_line =~ '\S\+\s*{'.endline && last_line !~ '^\s*[)\]]\+\(\s*:\s*'.s:PHP_validVariable.'\)\… 907 …PHP_IndentFunctionCallParameters && last_line =~ s:multilineFunctionCall && last_line !~ s:structu… 920 elseif last_line =~ '),'.endline && BalanceDirection(last_line) < 0 [all …]
|
| /vim-8.2.3635/src/ |
| H A D | ex_cmds.c | 743 last_line = curbuf->b_ml.ml_line_count; in do_move() 744 mark_adjust_nofold(line1, line2, last_line - line2, 0L); in do_move() 777 mark_adjust_nofold(last_line - num_lines + 1, last_line, in do_move() 778 -(last_line - dest - extra), 0L); in do_move() 804 last_line = curbuf->b_ml.ml_line_count; in do_move() 805 if (dest > last_line + 1) in do_move() 806 dest = last_line + 1; in do_move() 3698 linenr_T last_line= 0; // below last changed line AFTER the in ex_substitute() local 4583 last_line = lnum + 1; in ex_substitute() 4688 last_line = lnum + 1; in ex_substitute() [all …]
|
| H A D | textobject.c | 368 int last_line; in fwd_word() local 386 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count); in fwd_word() 388 if (i == -1 || (i >= 1 && last_line)) // started at last char in file in fwd_word()
|
| H A D | indent.c | 1598 linenr_T last_line = 0; // last changed line in ex_retab() local 1718 last_line = lnum; in ex_retab() 1758 changed_lines(first_line, 0, last_line + 1, 0L); in ex_retab()
|
| H A D | if_tcl.c | 1956 linenr_T last_line = 0; in ex_tcldo() local 2009 last_line = rs; in ex_tcldo() 2016 changed_lines(first_line, 0, last_line + 1, (long)0); in ex_tcldo()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_viminfo.vim | 522 let last_line = line('.') 549 call assert_equal(last_line, line('.'))
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | phpcomplete.vim | 893 let last_line = a:filelines[len(a:filelines) - 1] 894 let end_pos = [len(a:filelines) - 1, strlen(last_line) - 1]
|