Home
last modified time | relevance | path

Searched refs:done (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/vim-8.2.3635/src/testdir/
H A Dtest_channel_write.py13 done = 0 variable
14 while done < 10:
15 done = done + 1 variable
16 print(done)
H A Dtest_user_func.vim206 exe "func Xtest()\necho 'hello'\nendfunc\nlet done = 'yes'"
208 call assert_equal('yes', done)
210 unlet done
212 exe "func Xtest()\necho 'hello'\nendfunc|let done = 'yes'"
214 call assert_equal('yes', done)
216 unlet done
H A Druntest.vim286 let s:done += 1
324 " Success, create the .res file so that make knows it's done.
338 if s:done == 0
352 let message = 'Executed ' . s:done . (s:done > 1 ? ' tests' : ' test')
354 if s:done > 0 && has('reltime')
390 let s:done = 0
H A Dtest_ex_mode.vim200 call writefile(['done'], 'Xdidexmode')
205 call assert_equal(['done'], readfile('Xdidexmode'))
220 call writefile(['done'], 'Xdidexmode')
225 call assert_equal(['done'], readfile('Xdidexmode'))
H A Dtest_terminal.vim17 au TerminalOpen * let b:done = 'yes'
21 call assert_equal('yes', b:done)
55 au TerminalWinOpen * let b:done = 'yes'
57 call assert_equal('yes', b:done)
65 call assert_fails("echo b:done", 'E121:')
740 call term_sendkeys(buf, "echo done\<cr>")
742 " On MS-Windows there is an extra empty line below "done". Find "done" in
747 if line !~ 'done'
750 call assert_match('done', line)
1146 call assert_equal("done", readfile("Xdone")[0])
[all …]
/vim-8.2.3635/runtime/indent/
H A Docaml.vim23 setlocal indentkeys+=0=and,0=class,0=constraint,0=done,0=else,0=end,0=exception,0=external,0=if,0=i…
114 " Indent if current line begins with 'done' for 'do':
115 elseif line =~ '^\s*done\>'
116 return s:FindPair('\<do\>', '','\<done\>')
224 " Back to normal indent after lines ending with 'done':
225 elseif lline =~ '\<done\s*$'
226 let ind = s:FindPair('\<do\>', '','\<done\>')
H A Dtf.vim15 setlocal indentkeys+==/endif,=/then,=/else,=/done,0;
47 if line !~ '/done'
58 elseif line =~ '/done'
H A Ddtd.vim124 " way, we’re done indenting this element, so set it to that of the first
131 " of parentheses. As soon as we hit 0 we’re done. If that happens we must
248 " does exist, indent to same level as first line, as we’re now done with
259 " we’re now done with this entity.
/vim-8.2.3635/src/
H A Dcrypt_zip.c44 static int done = FALSE; in make_crc_tab() local
46 if (done) in make_crc_tab()
55 done = TRUE; in make_crc_tab()
H A Dfold.c449 int done; in foldOpenCursor() local
455 done = DONE_NOTHING; in foldOpenCursor()
1227 int done; in setFoldRepeat() local
1232 done = DONE_NOTHING; in setFoldRepeat()
1309 int done = 0; in setManualFoldWin() local
1352 done |= DONE_ACTION; in setManualFoldWin()
1362 done |= DONE_ACTION; in setManualFoldWin()
1382 done |= DONE_ACTION; in setManualFoldWin()
1385 if (done & DONE_ACTION) in setManualFoldWin()
1387 done |= DONE_FOLD; in setManualFoldWin()
[all …]
H A Dmove.c47 int done; in comp_botline() local
61 done = wp->w_cline_row; in comp_botline()
66 done = 0; in comp_botline()
95 wp->w_cline_row = done; in comp_botline()
103 if (done + n > wp->w_height) in comp_botline()
105 done += n; in comp_botline()
115 set_empty_rows(wp, done); in comp_botline()
1342 ++done; in scrolldown()
1357 ++done; in scrolldown()
1365 done += PLINES_NOFILL(curwin->w_topline); in scrolldown()
[all …]
H A Dclientserver.c427 char_u *done = alloc(numFiles); in cmdsrv_main() local
450 vim_memset(done, 0, numFiles); in cmdsrv_main()
451 while (memchr(done, 0, numFiles) != NULL) in cmdsrv_main()
470 done[j] = 1; in cmdsrv_main()
476 vim_free(done); in cmdsrv_main()
H A Dsearch.c4736 goto done; in fuzzy_match_in_list()
4755 goto done; in fuzzy_match_in_list()
4770 goto done; in fuzzy_match_in_list()
4782 done: in fuzzy_match_in_list()
4860 goto done; in do_fuzzymatch()
4871 goto done; in do_fuzzymatch()
4873 goto done; in do_fuzzymatch()
4876 goto done; in do_fuzzymatch()
4878 goto done; in do_fuzzymatch()
4881 goto done; in do_fuzzymatch()
[all …]
H A Dscriptfile.c383 int done = FAIL; in do_in_path_and_pp() local
390 done = do_in_path(path, name, flags, callback, cookie); in do_in_path_and_pp()
392 if ((done == FAIL || (flags & DIP_ALL)) && (flags & DIP_START)) in do_in_path_and_pp()
399 done = do_in_path(p_pp, s, flags, callback, cookie); in do_in_path_and_pp()
403 if ((done == FAIL || (flags & DIP_ALL)) && (flags & DIP_OPT)) in do_in_path_and_pp()
410 done = do_in_path(p_pp, s, flags, callback, cookie); in do_in_path_and_pp()
414 return done; in do_in_path_and_pp()
H A Devalvars.c3664 int done = FALSE; in getwinvar() local
3699 done = TRUE; in getwinvar()
3704 done = TRUE; in getwinvar()
3715 done = TRUE; in getwinvar()
4065 int done = FALSE; in f_gettabvar() local
4091 done = TRUE; in f_gettabvar()
4099 if (!done && argvars[2].v_type != VAR_UNKNOWN) in f_gettabvar()
4141 int done = FALSE; in f_getbufvar() local
4171 done = TRUE; in f_getbufvar()
4176 done = TRUE; in f_getbufvar()
[all …]
/vim-8.2.3635/runtime/spell/ga/
H A Dga_IE.diff90 + SAL DEARF T*R* # epenthetic vowel,initial only (nd- done b4)
94 + SAL DOIL(BF)- T*L* # epenthetic, see LBH--, " " (nd- done b4)
97 + SAL DH$ _ # [a�u]dh+most [io]dh done b4,[e����]dh done here
161 + SAL GH$ _ # [ai�u]gh,most ogh done b4,[e����]gh all terminal
178 + SAL IF�-$ *V # exception to F�$, �IF�$ done before
233 + SAL OFAR--$ *V # exception to FAR$, EOFAR done b4
/vim-8.2.3635/runtime/spell/gd/
H A Dgd_GB.diff86 + SAL DEARF T*R* # epenthetic vowel,initial only (nd- done b4)
90 + SAL DOIL(BF)- T*L* # epenthetic, see LBH--, " " (nd- done b4)
93 + SAL DH$ _ # [a�u]dh+most [io]dh done b4,[e����]dh done here
157 + SAL GH$ _ # [ai�u]gh,most ogh done b4,[e����]gh all terminal
174 + SAL IF�-$ *V # exception to F�$, �IF�$ done before
229 + SAL OFAR--$ *V # exception to FAR$, EOFAR done b4
/vim-8.2.3635/runtime/doc/
H A Dvim.man76 Can also be done with the "-e" argument.
79 the files. Can also be done with the "-R" argument.
82 The GUI version. Starts a new window. Can also be done with
87 be done with the "-y" argument.
92 done with the "-Z" argument.
208 slow medium (e.g. floppy). Can also be done with ":set
245 can be done with the command ":source! {scriptin}". If the
H A Dusr_26.txt70 Adding more than one can be done by prepending the number to CTRL-A. Suppose
160 done
162 The for-done loop is a shell construct to repeat the two lines in between,
175 there, you must tell Vim to read text instead. This is done by passing the
H A Dpi_logipat.txt41 No search is done, but the conversion from the
55 is done, but the transformation from the boolean
/vim-8.2.3635/.github/workflows/
H A Dci.yml235 done
248 …k?repo_token=${COVERALLS_REPO_TOKEN}" -d "payload[build_num]=${GITHUB_RUN_ID}&payload[status]=done"
510 …d ..\src2\testdir & nmake -nologo -f Make_dos.mak VIMPROG=..\..\src\vim > nul & echo done>done.txt"
521 if exist done.txt goto exitloop
/vim-8.2.3635/src/po/
H A DREADME.txt18 format. This is done by setting the OLD_PO_FILE_OUTPUT and OLD_PO_FILE_INPUT
20 be done for you. This does NOT work with gettext 0.10.36. Don't use it, get
52 - If you haven't done so already, run ./configure in the top vim directory
/vim-8.2.3635/runtime/ftplugin/
H A Dabaqus.vim6 " Only do this when not done yet for this buffer
88 " Undo must be done in nocompatible mode for <LocalLeader>.
H A Dchangelog.vim146 " Can be done with substitute of course, but unclean, and need \@! then.
163 " Position the cursor once we've done all the funky substitution.
216 " Reposition cursor once we're done.
/vim-8.2.3635/src/libvterm/src/
H A Dpen.c301 int done = 1; in vterm_state_setpen() local
463 done = 0; in vterm_state_setpen()
467 if(!done) in vterm_state_setpen()

12345678910>>...15