| /vim-8.2.3635/runtime/autoload/ |
| H A D | sqlcomplete.vim | 270 let base = s:prepended . a:base 285 let base = '' 326 if base == "" 331 let base = s:save_prev_table 337 if base =~ '\.' 412 let table = base 418 " let base = matchstr( base, '^\(.*\.\)\?\zs.*' ) 452 let base = '' 503 if base != '' 506 " \\(^.base.'\\) [all …]
|
| H A D | ccomplete.vim | 10 func ccomplete#Complete(findstart, base) argument 61 let base = s:prepended . a:base 65 if base == '' 82 if s == 0 || base[s - 1] != ']' 83 call add(items, strpart(base, s)) 87 if s == 0 || base[s - 1] != ']' 90 if base[e] == '.' 92 elseif base[e] == '-' 99 while e < len(base) 100 if base[e] == ']' [all …]
|
| H A D | contextcomplete.vim | 9 function! contextcomplete#Complete(findstart, base) argument 13 return syntaxcomplete#Complete(a:findstart, a:base) 18 return syntaxcomplete#Complete(a:findstart, a:base)
|
| H A D | xmlcomplete.vim | 63 function! xmlcomplete#CompleteTags(findstart, base) argument 116 " Initialize base return lists 119 " a:base is very short - we need context 128 let b:unaryTagsStack = "base meta link hr br param img area input col" 156 if len(a:base) == 1 158 if m =~ '^'.a:base 165 if m =~? '^'.a:base 167 elseif m =~? a:base 182 " find tags matching with "a:base" 183 " If a:base contains white space it is attribute. [all …]
|
| H A D | adacomplete.vim | 30 function! adacomplete#Complete (findstart, base) argument 32 return ada#User_Complete (a:findstart, a:base) 38 call ada#User_Complete (a:findstart, a:base) 43 let l:Pattern = '^' . a:base . '.*$'
|
| H A D | javascriptcomplete.vim | 8 function! javascriptcomplete#CompleteJS(findstart, base) argument 23 " Initialize base return lists 26 " a:base is very short - we need context 27 " Shortcontext is context without a:base, useful for checking if we are 30 let shortcontext = substitute(context, a:base.'$', '', '') 151 " Base - base. 483 elseif shortcontext =~ 'base\.$' 535 if m =~? '^'.a:base 537 elseif m =~? a:base 618 if m =~? '^'.a:base [all …]
|
| H A D | htmlcomplete.vim | 48 function! htmlcomplete#CompleteTags(findstart, base) argument 167 " Initialize base return lists 170 " a:base is very short - we need context 182 return javascriptcomplete#CompleteJS(0, a:base) 186 return phpcomplete#CompletePHP(0, a:base) 208 if len(a:base) == 1 210 if m =~ '^'.a:base 217 if m =~? '^'.a:base 219 elseif m =~? a:base 471 let js_context = matchstr(a:base, '\k\+$') [all …]
|
| H A D | phpcomplete.vim | 233 let base = substitute(a:base, '^\', '', '') 235 let base = a:base 274 if base !~ '\' 347 let base = substitute(a:base, '^\\', '', '') 472 let base = substitute(a:base, '^\', '', '') 778 let base = substitute(a:base, '^\', '', '') 781 let base = a:base 1115 if a:base == '' || property_name =~? '^'.a:base 1122 if a:base == '' || method_name =~? '^'.a:base 1128 if a:base == '' || property_name =~? '^'.a:base [all …]
|
| H A D | rubycomplete.vim | 218 function! rubycomplete#Complete(findstart, base) argument 240 execute "ruby VimRubyCompletion.get_completions('" . a:base . "')" 643 def self.get_completions(base) argument 645 b.get_completions base 648 def get_completions(base) 661 input += base
|
| H A D | syntaxcomplete.vim | 150 function! syntaxcomplete#Complete(findstart, base) argument 185 " let base = s:prepended . a:base 186 let base = substitute(s:prepended, "'", "''", 'g') 200 if base != '' 202 " let expr = (l:omni_syntax_ignorecase==0?'\C':'').'\<\%('.base.'\)\@!\w\+\s*' 208 …let expr = 'v:val '.(l:omni_syntax_ignorecase==1?'=~?':'=~#')." '^".escape(base, '\\/.*$^~[]').".*…
|
| /vim-8.2.3635/src/proto/ |
| H A D | mbyte.pro | 52 int latin_head_off(char_u *base, char_u *p); 53 int dbcs_screen_head_off(char_u *base, char_u *p); 54 int utf_head_off(char_u *base, char_u *p); 59 int mb_off_next(char_u *base, char_u *p); 60 int mb_tail_off(char_u *base, char_u *p); 63 int dbcs_screen_tail_off(char_u *base, char_u *p);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_lispwords.vim | 22 \ '(defun html-file (base)', 23 \ '(format nil "~(~A~).html" base))', 57 \ '(defun html-file (base)', 58 \ ' (format nil "~(~A~).html" base))',
|
| H A D | test_expr.vim | 6 let base = {} 7 func base.method() 10 func base.other() dict 13 let instance = copy(base) 14 call assert_true(base.method == instance.method) 15 call assert_true([base.method] == [instance.method]) 16 call assert_true(base.other == instance.other) 17 call assert_true([base.other] == [instance.other]) 19 call assert_false(base.method == base.other) 20 call assert_false([base.method] == [base.other]) [all …]
|
| H A D | test_ins_complete.vim | 106 func Omni(findstart, base) argument 110 echom a:base 132 def omni#func(findstart: bool, base: string): any 157 func! CompleteFunc(findstart, base) argument 158 let s:args += [[a:findstart, empty(a:base)]] 301 func s:CompleteDone_CompleteFuncList(findstart, base) argument 567 funct Omni_test(findstart, base) argument 622 func CompleteFunc(findstart, base) argument 634 func CompleteFunc2(findstart, base) argument 646 func CompleteFunc3(findstart, base) argument [all …]
|
| H A D | test_findfile.vim | 237 call writefile([], 'dir1/dir2/base.txt') 239 e base.txt 246 call delete('dir1/dir2/base.txt', 'rf')
|
| /vim-8.2.3635/src/ |
| H A D | mbyte.c | 3799 dbcs_head_off(char_u *base, char_u *p) in dbcs_head_off() argument 3810 q = base; in dbcs_head_off() 3829 if (p <= base in dbcs_screen_head_off() 3839 q = base; in dbcs_screen_head_off() 3851 utf_head_off(char_u *base, char_u *p) in utf_head_off() argument 3880 if (q <= base) in utf_head_off() 4077 mb_off_next(char_u *base, char_u *p) in mb_off_next() argument 4093 for (j = 0; p - j > base; ++j) in mb_off_next() 4104 return (*mb_head_off)(base, p); in mb_off_next() 4112 mb_tail_off(char_u *base, char_u *p) in mb_tail_off() argument [all …]
|
| H A D | strings.c | 972 int base = 10; in f_str2nr() local 987 base = (int)tv_get_number(&argvars[1]); in f_str2nr() 988 if (base != 2 && base != 8 && base != 10 && base != 16) in f_str2nr() 1001 switch (base) in f_str2nr()
|
| /vim-8.2.3635/src/GvimExt/ |
| H A D | Make_ming.mak | 5 # Originally, the DLL base address was fixed: -Wl,--image-base=0x1C000000 67 -Wl,--enable-auto-image-base \
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | cuplsim.vim | 29 " simulation base statement 30 syn match cuplsimBase "base:" nextgroup=cuplsimBaseSpec skipempty
|
| H A D | xquery.vim | 26 syn keyword xqStatement ancestor ancestor-or-self and as ascending at attribute base-uri boundary-s… 29 …base-uri base-uri boolean ceiling codepoint-equal codepoints-to-string collection collection compa…
|
| H A D | reva.vim | 94 Builtin .rs .x 00; 0do 0if 1, 2, 3, 2* 2/ 2constant 2variable 3dup 4dup ;then >base >defer 95 Builtin >rr ? ?do @execute @rem appdir argv as back base base! between chain cleanup-libs 126 syn keyword revamath decimal hex base binary octal
|
| H A D | svg.vim | 7 " dialect. But as some plugins base their effect on filetype,
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | cucumber.vim | 109 function! CucumberComplete(findstart,base) abort argument 143 call filter(steps,'strpart(v:val,0,strlen(a:base)) ==# a:base')
|
| H A D | debchangelog.vim | 299 fun! DebCompleteBugs(findstart, base) argument 365 " filter only those which match a:base: 366 if parts[1] !~ '^' . a:base
|
| /vim-8.2.3635/runtime/autoload/xml/ |
| H A D | xsd.vim | 66 \ {'base' : [], 'id' : []} ], 105 \ {'base' : [], 'id' : []} ],
|