Home
last modified time | relevance | path

Searched refs:confirm (Results 1 – 25 of 57) sorted by relevance

123

/vim-8.2.3635/runtime/
H A Dmacmap.vim11 nnoremap <special> <D-n> :confirm enew<CR>
17 nnoremap <special> <D-o> :browse confirm e<CR>
23 nnoremap <silent> <special> <D-w> :if winheight(2) < 0 <Bar> confirm enew <Bar> else <Bar> confirm
29 nnoremap <silent> <special> <D-s> :if expand("%") == ""<Bar>browse confirm w<Bar> else<Bar>confirm
35 nnoremap <special> <D-S-s> :browse confirm saveas<CR>
H A Dmenu.vim125 an 10.325 &File.&New<Tab>:enew :confirm enew<CR>
128 \ confirm enew <Bar>
130 \ confirm close <Bar>
133 … 10.340 &File.&Save<Tab>:w :if expand("%") == ""<Bar>browse confirm w<Bar>else<Bar>confirm w<Bar>…
154 an 10.610 &File.Sa&ve-Exit<Tab>:wqa :confirm wqa<CR>
155 an 10.620 &File.E&xit<Tab>:qa :confirm qa<CR>
839 exe cmd . ' :confirm b' . a:num . '<CR>'
917 an 70.340 &Window.&Close<Tab>^Wc :confirm close<CR>
1063 an 1.10 ToolBar.Open :browse confirm e<CR>
1064 …an <silent> 1.20 ToolBar.Save :if expand("%") == ""<Bar>browse confirm w<Bar>else<Bar>confirm w<B…
[all …]
/vim-8.2.3635/src/
H A Duninstall.c27 confirm(void) in confirm() function
341 if (!interactive || confirm()) in main()
354 if (confirm()) in main()
374 if (!interactive || confirm()) in main()
385 if (!interactive || confirm()) in main()
395 if (!interactive || confirm()) in main()
/vim-8.2.3635/src/testdir/
H A Dtest_excmd.vim195 " Test for the :confirm command dialog
214 call term_sendkeys(buf, ":confirm qall\n")
233 call term_sendkeys(buf, ":confirm qall\n")
252 call term_sendkeys(buf, ":confirm qall\n")
279 call term_sendkeys(buf, ":confirm close\n")
284 call term_sendkeys(buf, ":confirm close\n")
310 call term_sendkeys(buf, ":confirm q\n")
318 call term_sendkeys(buf, ":confirm wq\n")
355 call term_sendkeys(buf, ":confirm w\n")
394 call term_sendkeys(buf, ":confirm 2,3w\n")
[all …]
H A Dtest_buffer.vim242 " Test for deleting a modified buffer with :confirm
251 confirm bdel
255 confirm bdel
259 " Test for editing another buffer from a modified buffer with :confirm
269 call assert_fails('confirm b Xfile', 'E37:')
273 call assert_fails('confirm b Xfile', ['', 'E37:'])
277 confirm b Xfile
H A Dtest_usercommands.vim29 confirm MyCmd
30 call assert_equal('confirm', g:mods)
32 call assert_equal('confirm', g:mods)
91 aboveleft belowright botright browse confirm hide keepalt keepjumps
95 call assert_equal('browse confirm hide keepalt keepjumps ' .
H A Dtest_functions.vim1934 " Test confirm({msg} [, {choices} [, {default} [, {type}]]])
1940 let a = confirm('Press O to proceed')
1944 let a = 'Are you sure?'->confirm("&Yes\n&No")
1948 let a = confirm('Are you sure?', "&Yes\n&No")
1951 " confirm() should return 0 when pressing CTRL-C.
1953 let a = confirm('Are you sure?', "&Yes\n&No")
1959 let a = confirm('Are you sure?', "&Yes\n&No")
1964 let a = confirm('Are you sure?', "&Yes\n&No")
1968 let a = confirm('Are you sure?', "&Yes\n&No", 2)
1972 let a = confirm('Are you sure?', "&Yes\n&No", 0)
[all …]
H A Dtest_arglist.vim544 " Try :confirm quit with unedited files in arglist
548 call term_sendkeys(buf, ":confirm quit\n")
554 call term_sendkeys(buf, ":confirm quit\n")
H A Dtest_menu.vim12 call assert_match('browse confirm w', execute(':menu File.Save'))
74 call assert_match('browse confirm w', execute(':menu Datei.Speichern'))
/vim-8.2.3635/runtime/autoload/
H A Dspellfile.vim46 if confirm("Shall I create " . dir_to_create, "&Yes\n&No", 2) == 1
59 if confirm(msg, "&Yes\n&No", 2) == 1
113 let dirchoice = confirm(msg, dirchoices) - 2
127 if confirm(msg, "&No\n&Yes") == 2
182 " Get a list of writable spell directories and choices for confirm().
H A Djavascriptcomplete.vim371 let windmeth = ['alert', 'blur', 'clearInterval', 'clearTimeout', 'close', 'confirm', 'focus',
601 let builtin = ['alert(', 'confirm(']
/vim-8.2.3635/runtime/syntax/
H A Dpine.vim202 syn keyword pineOption compose-sets-newsgroup-without-confirm
203 syn keyword pineOption confirm-role-even-for-default
204 syn keyword pineOption continue-tab-without-confirm
273 syn keyword pineOption expunge-without-confirm
274 syn keyword pineOption expunge-without-confirm-everywhere
276 syn keyword pineOption fcc-only-without-confirm
289 syn keyword pineOption next-thread-without-confirm
314 syn keyword pineOption quit-without-confirm
321 syn keyword pineOption select-without-confirm
H A Dtmux.vim99 \ clock-mode command-prompt confirm confirm-before copy-mode customize-mode
H A Dgdb.vim55 syn keyword gdbSet annotate architecture args check complaints confirm editing endian
H A Djavascript.vim58 syn keyword javaScriptMessage alert confirm prompt status
H A Dps1.vim67 syn match ps1Cmdlet /\v(approve|assert|build|complete|confirm|deny|deploy|disable|enable|install|in…
H A Dsshconfig.vim36 syn keyword sshconfigYesNo yes no ask confirm
/vim-8.2.3635/runtime/doc/
H A Dusr_31.txt92 :confirm edit foo.txt
108 Just like ":browse", the ":confirm" command can be prepended to most commands
111 :confirm browse edit
122 When you are not using the GUI, the ":confirm" command works as well. Instead
126 :confirm edit main.c
H A Dusr_42.txt65 :menu 10.340 &File.&Save<Tab>:w :confirm w<CR>
282 the ":browse" command for selecting a file. And ":confirm" to get a dialog
286 :amenu File.Open :browse confirm edit<CR>
289 ":confirm" will pop up a dialog when the current buffer has changes. You can
291 For more complicated items, the confirm() and inputdialog() functions can
H A Dos_qnx.txt54 :confirm command |:confirm|
H A Dgui_w32.txt279 WARNING: If you close this window with the "X" button, and confirm the
341 The dialogs displayed by the "confirm" family (i.e. the 'confirm' option,
342 |:confirm| command and |confirm()| function) are GUI-based rather than the
H A Dediting.txt1101 edited. See |:confirm| and 'confirm'.
1168 changed. See |:confirm|.
1186 another reason. See |:confirm|.
1197 *:confirm* *:conf*
1206 :confirm w foo
1208 :confirm q
1210 :confirm qa
1215 If you want to always use ":confirm", set the 'confirm' option.
1227 and |:qall| if 'confirm' is set.
H A Dvarious.txt363 N *+dialog_gui* Support for |:confirm| with GUI dialog.
364 N *+dialog_con* Support for |:confirm| with console dialog.
365 N *+dialog_con_gui* Support for |:confirm| with GUI and console dialog.
/vim-8.2.3635/runtime/ftplugin/
H A Dspec.vim104 let option = confirm("Can't find %changelog. Create one? ","&End of file\n&Here\n&Cancel",3)
133 let option = confirm("Increase release? ","&Yes\n&No",1)
/vim-8.2.3635/runtime/indent/
H A Dscala.vim35 call confirm(a:msg)

123