| /vim-8.2.3635/src/testdir/ |
| H A D | test_shell.vim | 64 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' \\!%# \\'\\'' \\\\! \\% \\#'" 65 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\\\!\\%\\# \\'\\'' \\\\\\! \\\\% \\\\#'" 68 let str1 = "'cmd \"arg1\" ''arg2'' !%# \\'' \\! \\% \\#'" 69 let str2 = "'cmd \"arg1\" ''arg2'' \\!\\%\\# \\'' \\\\! \\\\% \\\\#'" 71 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' !%# \\\\'\\'' \\\\! \\\\% \\\\#'" 72 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\!\\%\\# \\\\'\\'' \\\\\\! \\\\\\% \\\\\\#'" 74 let str1 = "'cmd \"arg1\" '\\''arg2'\\'' !%# \\'\\'' \\! \\% \\#'" 75 let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\!\\%\\# \\'\\'' \\\\! \\\\% \\\\#'" 77 call assert_equal(str1, shellescape("cmd \"arg1\" 'arg2' !%# \\' \\! \\% \\#"), e[0]) 78 call assert_equal(str2, shellescape("cmd \"arg1\" 'arg2' !%# \\' \\! \\% \\#", 1), e[0])
|
| H A D | test_partial.vim | 5 func MyFunc(arg1, arg2, arg3) argument 6 return a:arg1 . '/' . a:arg2 . '/' . a:arg3 61 func MyDictFunc(arg1, arg2) dict argument 62 return self.name . '/' . a:arg1 . '/' . a:arg2
|
| H A D | test_cindent.vim | 502 func(arg1, 514 func(arg1, 1467 func(arg1, 1479 func(arg1, 3214 virtual void method2(int arg1, 3229 virtual void method2(int arg1,
|
| H A D | test_debugger.vim | 1187 call s:File1Func( 'arg1' ) 1227 call RunDbgCmd(buf, 'step', [ 'line 11: call s:File1Func( ''arg1'' )' ] ) 1229 call RunDbgCmd(buf, 'echo a:arg', [ 'arg1' ] ) 1264 call RunDbgCmd(buf, 'echo a:arg', [ 'arg1' ] )
|
| H A D | test_startup.vim | 828 let out = system(GetVimCommand() . ' -es -V1 -X arg1 --cmd "echo v:argv" --cmd q') 831 let idx = index(list, 'arg1') 833 call assert_equal(['arg1', '--cmd', 'echo v:argv', '--cmd', 'q'']'], list[idx:])
|
| H A D | test_exists.vim | 334 call FuncArg_Tests("arg1", "arg2")
|
| H A D | test_vim9_func.vim | 2009 arg1: string, 2013 return arg1 .. arg2 .. join(rest, '-') 2017 arg1: string, # comment 2021 return arg1 .. arg2 .. join(rest, '-')
|
| H A D | test_trycatch.vim | 1823 func T75_F1(arg1) argument 1827 func T75_F2(arg1, arg2) argument
|
| /vim-8.2.3635/src/ |
| H A D | vim9execute.c | 3604 res = arg1 / arg2; in exec_instructions() 3609 res = arg1 % arg2; in exec_instructions() 3611 case EXPR_SUB: res = arg1 - arg2; break; in exec_instructions() 3612 case EXPR_ADD: res = arg1 + arg2; break; in exec_instructions() 3647 float_T arg1 = tv1->vval.v_float; in exec_instructions() local 3655 case EXPR_DIV: res = arg1 / arg2; break; in exec_instructions() 3656 case EXPR_SUB: res = arg1 - arg2; break; in exec_instructions() 3657 case EXPR_ADD: res = arg1 + arg2; break; in exec_instructions() 3683 list_T *arg1 = tv1->vval.v_list; in exec_instructions() local 3694 case EXPR_IS: cmp = arg1 == arg2; break; in exec_instructions() [all …]
|
| H A D | gui.c | 1832 int arg1 = 0, arg2 = 0; in gui_write() local 1869 arg1 = getdigits(&p); in gui_write() 1889 gui_set_cursor(arg1, arg2); in gui_write() 1895 if (arg1 < arg2) in gui_write() 1897 gui.scroll_region_top = arg1; in gui_write() 1903 gui.scroll_region_bot = arg1; in gui_write() 1907 if (arg1 < arg2) in gui_write() 1909 gui.scroll_region_left = arg1; in gui_write() 1935 gui_start_highlight(arg1); in gui_write() 1938 gui_stop_highlight(arg1); in gui_write() [all …]
|
| H A D | os_win32.c | 6604 arg1 = args[0]; in mch_write() 6613 textcolor((WORD) arg1); in mch_write() 6615 textattr((WORD) arg1); in mch_write() 6622 gotoxy(arg2, arg1); in mch_write() 6630 set_scroll_region_tb(arg1, arg2); in mch_write() 6634 set_scroll_region_lr(arg1, arg2); in mch_write() 6643 textbackground((WORD) arg1); in mch_write() 6652 textcolor((WORD) arg1); in mch_write() 6656 gotoxy(1, arg1); in mch_write() 6660 insert_lines(arg1); in mch_write() [all …]
|
| H A D | sign.c | 1505 char_u *arg1; in parse_sign_cmd_args() local 1511 arg1 = arg; in parse_sign_cmd_args() 1518 arg = arg1; in parse_sign_cmd_args()
|
| H A D | if_cscope.c | 477 char *arg1, // filename - may contain environment variables in cs_add_common() argument 495 expand_env((char_u *)arg1, (char_u *)fname, MAXPATHL); in cs_add_common()
|
| H A D | if_py_both.h | 32 #define PyErr_FORMAT2(exc, str, arg1, arg2) PyErr_Format(exc, _(str), arg1,arg2) argument
|
| /vim-8.2.3635/runtime/indent/testdir/ |
| H A D | tcl.in | 14 command_with_a_long_time -arg1 "First" \
|
| H A D | tcl.ok | 14 command_with_a_long_time -arg1 "First" \
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | develop.txt | 383 Wrong: int function_name(int arg1, int arg2) 392 int arg1, // short comment about arg1 397 local = arg1 * arg2; 415 Wrong: func(arg1,arg2); for (i = 0;i < 2;++i) 416 OK: func(arg1, arg2); for (i = 0; i < 2; ++i)
|
| H A D | vim9.txt | 603 arg1, 1703 def Func(arg1: number, arg2: string): bool 1709 def Func(number arg1, string arg2) bool 1713 def Func(arg1 number, arg2 string) bool
|
| H A D | map.txt | 1719 :Mycmd arg1 arg2 1721 :call Myfunc("arg1","arg2")
|
| H A D | todo.txt | 4641 :libcall internal-name function(arg1, arg2, ...) 4642 :libcall function(arg1, arg2, ...) 5135 func( arg1
|
| H A D | eval.txt | 1547 :let F = {arg1, arg2 -> arg1 - arg2} 5215 func Callback(arg1, arg2, name) 5235 func Callback(arg1, arg2, name) 5260 function Callback(arg1, count) dict
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | dtrace.vim | 88 syn keyword dtraceIdentifier arg0 arg1 arg2 arg3 arg4 arg5 arg6 arg7 arg8 arg9
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | phpcomplete.vim | 2775 … | int','crypt(':'string $str [, string $salt] | string','echo(':'string $arg1 [, string $...] | v… 2799 …t $color | bool','imagefilter(':'resource $image, int $filtertype [, int $arg1 [, int $arg2 [, int…
|