Home
last modified time | relevance | path

Searched refs:verbose (Results 1 – 25 of 141) sorted by relevance

123456

/vim-8.2.3635/src/testdir/
H A Dtest_autochdir.vim33 call assert_match('\[global\].*testdir$', execute('verbose pwd'))
38 call assert_match('\[window\].*testdir[/\\]Xautodir', execute('verbose pwd'))
42 call assert_match('\[autochdir\].*testdir$', execute('verbose pwd'))
44 call assert_match('\[window\].*testdir$', execute('verbose pwd'))
46 call assert_match('\[tabpage\].*testdir$', execute('verbose pwd'))
48 call assert_match('\[global\].*testdir$', execute('verbose pwd'))
50 call assert_match('\[autochdir\].*testdir$', execute('verbose pwd'))
52 call assert_match('\[autochdir\].*testdir[/\\]Xautodir', execute('verbose pwd'))
54 call assert_match('\[autochdir\].*testdir[/\\]Xautodir', execute('verbose pwd'))
56 call assert_match('\[global\].*testdir', execute('verbose pwd'))
[all …]
H A Dtest_user_func.vim223 set verbose=1
233 set verbose=0
238 set verbose=15
244 set verbose=0
298 verbose func F1
299 verbose func F2
300 verbose func F3
301 verbose func F4
302 verbose func F5
303 verbose func F6
H A Dtest_excmd.vim537 " Test for the :verbose command
539 call assert_equal([' verbose=1'], split(execute('verbose set vbs'), "\n"))
540 call assert_equal([' verbose=0'], split(execute('0verbose set vbs'), "\n"))
541 let l = execute("4verbose set verbose | set verbose")
542 call assert_equal([' verbose=4', ' verbose=0'], split(l, "\n"))
H A Dtest_cursorline.vim238 *:set-verbose*
239 When 'verbose' is non-zero, displaying an option value will also tell where it
241 :verbose set shiftwidth cindent?
246 This is only done when specific option values are requested, not for ":verbose
247 set all" or ":verbose set" without an argument.
H A Dtest_usercommands.vim82 verbose MyCmd
83 call assert_equal('verbose', g:mods)
85 call assert_equal('verbose', g:mods)
93 \ topleft verbose vertical MyCmd
97 \ 'verbose aboveleft belowright botright tab topleft vertical', g:mods)
591 " Test output in verbose mode.
597 \ execute('verbose command DoCmd'))
H A Dtest_cd.vim77 call assert_match('^\[global\] .*/Xdir$', trim(execute('verbose pwd')))
82 call assert_match('^\[tabpage\] .*/y$', trim(execute('verbose pwd')))
89 call assert_match('^\[window\] .*/z$', trim(execute('verbose pwd')))
H A Dtest_startup.vim263 " Test the -V[N] argument to set the 'verbose' option to [N]
268 let out = system(GetVimCommand() . ' --clean -es -X -V0 -c "set verbose?" -cq')
269 call assert_equal(" verbose=0\n", out)
271 let out = system(GetVimCommand() . ' --clean -es -X -V2 -c "set verbose?" -cq')
273 call assert_match(" verbose=2\n", out)
275 let out = system(GetVimCommand() . ' --clean -es -X -V15 -c "set verbose?" -cq')
276 …ing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nline 1: \" The default vimrc file\..* verbose=15\n", out)
357 " Test the -V[N]{filename} argument to set the 'verbose' option to N
360 if RunVim([], [], ' --clean -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
363 call assert_match("\n verbose=2\n", out)
[all …]
/vim-8.2.3635/src/proto/
H A Deval.pro44 int check_can_index(typval_T *rettv, int evaluate, int verbose);
46 …int is_range, typval_T *var1, typval_T *var2, int exclusive, char_u *key, int keylen, int verbose);
64 int get_name_len(char_u **arg, char_u **alias, int evaluate, int verbose);
69 int handle_subscript(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int verbose);
H A Dif_tcl.pro3 int tcl_enabled(int verbose);
H A Dif_perl.pro2 int perl_enabled(int verbose);
H A Dif_ruby.pro2 int ruby_enabled(int verbose);
H A Dif_lua.pro2 int lua_enabled(int verbose);
H A Dif_python3.pro2 int python3_enabled(int verbose);
H A Dif_python.pro2 int python_enabled(int verbose);
H A Dif_mzsch.pro2 int mzscheme_enabled(int verbose);
H A Dtag.pro2 int do_tag(char_u *tag, int type, int count, int forceit, int verbose);
/vim-8.2.3635/runtime/compiler/
H A Djshint.vim18 " CompilerSet makeprg=npx\ jshint\ --verbose
20 CompilerSet makeprg=jshint\ --verbose
/vim-8.2.3635/runtime/tools/
H A Dccfilter.c122 int verbose = 0; /* Include Bad Formatted Lines */ in main() local
145 verbose = 1; in main()
311 if (verbose) in main()
/vim-8.2.3635/runtime/doc/
H A Dvarious.txt651 *:verb* *:verbose*
654 [count] is omitted one is used. ":0verbose" can be
655 used to set 'verbose' to zero.
658 The combination of ":silent" and ":verbose" can be
662 :silent verbose runtime foobar.vim
666 < When concatenating another command, the ":verbose"
668 :4verbose set verbose | set verbose
669 < verbose=4 ~
670 verbose=0 ~
671 For logging verbose messages in a file use the
[all …]
/vim-8.2.3635/src/
H A Deval.c3864 if (verbose) in eval_lambda()
3914 if (verbose) in eval_method()
3923 if (verbose) in eval_method()
3929 if (verbose) in eval_method()
4061 if (verbose) in eval_index()
4096 if (verbose) in check_can_index()
4101 if (verbose) in check_can_index()
4110 if (verbose) in check_can_index()
4177 int verbose) in eval_index_inner() argument
5806 if (verbose) in handle_subscript()
[all …]
H A Dif_python.c669 python_runtime_link_init(char *libname, int verbose) in python_runtime_link_init() argument
681 if (verbose) in python_runtime_link_init()
692 if (verbose) in python_runtime_link_init()
704 if (verbose) in python_runtime_link_init()
721 if (verbose) in python_runtime_link_init()
734 python_enabled(int verbose) in python_enabled() argument
736 return python_runtime_link_init((char *)p_pydll, verbose) == OK; in python_enabled()
H A Dif_python3.c759 py3_runtime_link_init(char *libname, int verbose) in py3_runtime_link_init() argument
773 if (verbose) in py3_runtime_link_init()
799 if (verbose) in py3_runtime_link_init()
811 if (verbose) in py3_runtime_link_init()
846 if (verbose) in py3_runtime_link_init()
859 python3_enabled(int verbose) in python3_enabled() argument
861 return py3_runtime_link_init((char *)p_py3dll, verbose) == OK; in python3_enabled()
H A Dvim9script.c679 int verbose) in find_exported() argument
692 if (verbose) in find_exported()
723 if (verbose) in find_exported()
729 if (verbose) in find_exported()
/vim-8.2.3635/runtime/autoload/
H A Dspellfile.vim16 if &verbose
31 if &verbose
42 if &verbose || dir_to_create != ''
/vim-8.2.3635/runtime/syntax/
H A Dgpg.vim82 \ no-sk-comments no-tty no-utf8-strings no-verbose
89 \ utf8-strings verbose with-colons with-fingerprint

123456