Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 139) sorted by relevance

123456

/vim-8.2.3635/src/
H A Dtermlib.c90 if (tmp) in tgetent()
91 *tmp = ':'; in tgetent()
98 while (*tmp && *tmp != ':') // Check if TERM matches in tgetent()
103 tmp++; in tgetent()
105 if (tmp+tlen == nexttmp && _match(tmp, term) == tlen) in tgetent()
283 tmp = _find(tmp, ":"); // For each field in tgetstr()
285 tmp++; in tgetstr()
286 if (!*tmp) in tgetstr()
294 while (*++tmp && *tmp != ':') { // not at end of field in tgetstr()
335 tmp--; in tgetstr()
[all …]
H A Ddigraph.c2110 digr_T tmp; in listdigraphs() local
2113 tmp.char1 = dp->char1; in listdigraphs()
2114 tmp.char2 = dp->char2; in listdigraphs()
2115 tmp.result = getexactdigraph(tmp.char1, tmp.char2, FALSE); in listdigraphs()
2116 if (tmp.result != 0 && tmp.result != tmp.char2 in listdigraphs()
2117 && (has_mbyte || tmp.result <= 255)) in listdigraphs()
2211 digr_T tmp; in digraph_getlist_common() local
2213 tmp.char1 = dp->char1; in digraph_getlist_common()
2214 tmp.char2 = dp->char2; in digraph_getlist_common()
2215 tmp.result = getexactdigraph(tmp.char1, tmp.char2, FALSE); in digraph_getlist_common()
[all …]
H A Dstrings.c1934 char tmp[TMP_LEN]; in vim_vsnprintf_typval() local
2315 str_arg = tmp; in vim_vsnprintf_typval()
2338 tmp[str_arg_l++] = '0'; in vim_vsnprintf_typval()
2403 tmp + str_arg_l, f, in vim_vsnprintf_typval()
2407 tmp + str_arg_l, f, in vim_vsnprintf_typval()
2424 tmp + str_arg_l, f, in vim_vsnprintf_typval()
2428 tmp + str_arg_l, f, in vim_vsnprintf_typval()
2535 str_arg_l = STRLEN(tmp); in vim_vsnprintf_typval()
2552 str_arg_l = STRLEN(tmp); in vim_vsnprintf_typval()
2588 tp = tmp + str_arg_l - 1; in vim_vsnprintf_typval()
[all …]
H A Dgui_gtk.c2207 GtkWidget *tmp; in find_replace_dialog_create() local
2307 tmp = gtk_label_new(CONV(_("Find what:"))); in find_replace_dialog_create()
2309 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0); in find_replace_dialog_create()
2310 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5); in find_replace_dialog_create()
2352 tmp = gtk_label_new(CONV(_("Replace with:"))); in find_replace_dialog_create()
2354 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0); in find_replace_dialog_create()
2355 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5); in find_replace_dialog_create()
2448 tmp = gtk_frame_new(CONV(_("Direction"))); in find_replace_dialog_create()
2543 gtk_widget_set_can_default(tmp, TRUE); in find_replace_dialog_create()
2545 g_signal_connect_swapped(G_OBJECT(tmp), in find_replace_dialog_create()
[all …]
H A Dpathdef.sh6 cp auto/pathdef.c auto/pathdef.tmp
7 sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
8 rm -f auto/pathdef.tmp
H A Dtypemap8 IV tmp = SvIV((SV*)SvRV($arg));
9 $var = INT2PTR($type, tmp);
10 if (!tmp)
H A Dvimtutor27 tmp="${TMPDIR-/tmp}"
28 TUTORCOPY=`mktemp $tmp/tutorXXXXXX || tempfile -p tutor || echo none`
33 tmpdir=$tmp/vimtutor$$
/vim-8.2.3635/runtime/spell/en/
H A Dmain.aap153 :mkdir tmp
154 :cd tmp
166 :delete {r}{f}{q} tmp
172 :mkdir tmp
173 :cd tmp
191 :mkdir tmp
192 :cd tmp
210 :mkdir tmp
211 :cd tmp
229 :mkdir tmp
[all …]
/vim-8.2.3635/src/testdir/
H A Dtest_gf.vim8 \ "first test for URL://machine.name/tmp/vimtest2a and other text",
9 \ "second test for URL://machine.name/tmp/vimtest2b. And other text",
11 \ "fourth test for URL:\\\\machine.name\\tmp\\vimtest2d, and other text",
12 \ "fifth test for URL://machine.name/tmp?q=vim&opt=yes and other text",
17 call search("tmp")
18 call assert_equal("URL://machine.name/tmp/vimtest2a", expand("<cfile>"))
21 call assert_equal("URL://machine.name/tmp/vimtest2b", expand("<cfile>"))
32 call assert_equal("URL:\\\\machine.name\\tmp\\vimtest2d", expand("<cfile>"))
36 call assert_equal("URL://machine.name/tmp?q=vim&opt=yes", expand("<cfile>"))
H A Dtest_stat.vim6 let fnames = ['Xtest1.tmp', 'Xtest2.tmp', 'Xtest3.tmp']
63 let fname = 'Xtest.tmp'
82 let fname = 'Xtest.tmp'
157 let fname = 'Xtest.tmp'
H A DMake_amiga.mak16 nongui: /tmp $(SCRIPTS)
31 /tmp:
32 makedir /tmp
H A Dtest_viminfo.vim690 \ "'B 1 0 /tmp/nothing",
735 \ "'E 2 0 /tmp/nothing",
737 \ "> /tmp/file_one.txt",
740 \ "> /tmp/file_two.txt",
743 \ "> /tmp/another.txt",
749 edit /tmp/file_two.txt
758 …_equal(['1: /tmp/file_one.txt', '2: /tmp/file_two.txt', '3: /tmp/another.txt'], filter(split(execu…
759 …ssert_equal(['1: /tmp/file_one.txt', '2: /tmp/file_two.txt'], filter(split(execute('filter file_ o…
1092 if !isdirectory('/tmp') || getftype('/tmp') != 'dir'
1096 set viminfo+=r/tmp
[all …]
/vim-8.2.3635/runtime/autoload/
H A Dgzip.vim77 let tmp = tempname()
78 let tmpe = tmp . "." . expand("<afile>:e")
80 let tmp_esc = fnameescape(tmp)
83 let tmp_esc = escape(tmp, ' ')
86 " write the just read lines to a temp file "'[,']w tmp.gz"
88 " uncompress the temp file: call system("gzip -dn tmp.gz")
90 if !filereadable(tmp)
103 " read in the uncompressed lines "'[-1r tmp"
122 call delete(tmp)
/vim-8.2.3635/runtime/spell/pt/
H A Dmain.aap133 :mkdir tmp
134 :cd tmp
146 :delete {r}{f}{q} tmp
152 :mkdir tmp
153 :cd tmp
165 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/doc/
H A Drecover.txt71 on the Amiga) or in a place that is cleared when rebooting (like /tmp on Unix)
76 :set dir=dh2:tmp (for Amiga)
77 :set dir=~/tmp (for Unix)
78 :set dir=c:\\tmp (for Win32)
80 to create that "tmp" directory for this to work!
212 Need encryption key for "/tmp/tt" ~
214 "/tmp/tt" [crypted] 23200L, 522129C ~
215 Using swap file "/tmp/.tt.swp" ~
216 Original file "/tmp/tt" ~
217 Swap file is encrypted: "/tmp/.tt.swp" ~
/vim-8.2.3635/runtime/spell/tr/
H A Dmain.aap47 :mkdir tmp
48 :cd tmp
60 :delete {r}{f}{q} tmp
/vim-8.2.3635/src/libvterm/src/
H A Dstate.c1672 char *tmp = state->tmp.decrqss; in request_status_string() local
1676 tmp[0] = tmp[1] = tmp[2] = tmp[3] = 0; in request_status_string()
1678 while(i < sizeof(state->tmp.decrqss)-1 && tmp[i]) in request_status_string()
1680 while(i < sizeof(state->tmp.decrqss)-1 && frag.len--) in request_status_string()
1681 tmp[i++] = (frag.str++)[0]; in request_status_string()
1682 tmp[i] = 0; in request_status_string()
1687 switch(tmp[0] | tmp[1]<<8 | tmp[2]<<16) { in request_status_string()
1749 vterm_push_output_sprintf_dcs(state->vt, "0$r%s", tmp); in request_status_string()
/vim-8.2.3635/runtime/tools/
H A Dvimspell.sh19 tmp="${TMPDIR-/tmp}"
25 OUTFILE=$tmp/vimspell$$
/vim-8.2.3635/runtime/spell/tl/
H A Dmain.aap60 :mkdir tmp
61 :cd tmp
73 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/nn/
H A Dmain.aap61 :mkdir tmp
62 :cd tmp
74 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/el/
H A Dmain.aap61 :mkdir tmp
62 :cd tmp
74 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/he/
H A Dmain.aap61 :mkdir tmp
62 :cd tmp
74 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/nb/
H A Dmain.aap61 :mkdir tmp
62 :cd tmp
74 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/sw/
H A Dmain.aap62 :mkdir tmp
63 :cd tmp
75 :delete {r}{f}{q} tmp
/vim-8.2.3635/runtime/spell/zu/
H A Dmain.aap66 :mkdir tmp
67 :cd tmp
79 :delete {r}{f}{q} tmp

123456