| /vim-8.2.3635/src/testdir/ |
| H A D | test_packadd.vim | 24 set rtp& 25 let rtp = &rtp 53 call assert_true(len(&rtp) > len(rtp)) 65 let rtp = &rtp 69 call assert_true(len(&rtp) > len(rtp)) 81 let rtp = &rtp 91 call assert_true(len(&rtp) > len(rtp)) 99 let rtp = &rtp 108 call assert_true(len(&rtp) > len(rtp)) 147 let rtp = &rtp [all …]
|
| H A D | test_help.vim | 58 let rtp_save = &rtp 59 set rtp+=./Xruntime 70 let &rtp = rtp_save 111 let rtp = &rtp 112 let &rtp = 'Xdir' 114 let &rtp = rtp
|
| H A D | test_help_tagjump.vim | 187 let s:rtp_save = &rtp 188 let &rtp="Xdir1/doc-en" 216 let &rtp = s:rtp_save 245 set rtp+=Xdir1/doc-ab 258 set rtp+=Xdir1/doc-ja 301 set rtp+=Xdir1/doc-ab 302 set rtp+=Xdir1/doc-ja
|
| H A D | setup.vim | 12 set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after 14 let &packpath = &rtp
|
| H A D | test_vim9_script.vim | 1627 var save_rtp = &rtp 1628 &rtp = getcwd() .. ',' .. &rtp 1637 &rtp = save_rtp 2118 &rtp = getcwd() 2120 &rtp = save_rtp 3948 &rtp = save_rtp 3974 &rtp = save_rtp 4042 &rtp = dir 4075 &rtp = save_rtp 4094 &rtp = getcwd() .. '/rtp' .. ',' .. &rtp [all …]
|
| H A D | test_spellfile.vim | 208 set nospell spelllang& rtp& 214 let save_rtp = &rtp 386 let &rtp = save_rtp 392 let save_rtp = &rtp 475 let &rtp = save_rtp 632 let save_rtp = &rtp 640 let &rtp = save_rtp 1134 let save_rtp = &rtp 1149 let &rtp = save_rtp
|
| H A D | test_mksession.vim | 201 let _rtp=&rtp 204 let newrtp=&rtp.',~'.repeat('/foobar', 1000) 206 let &rtp=newrtp 209 let expected=split(&rtp, ',') 215 let &rtp=_rtp
|
| H A D | test_vim9_func.vim | 64 lines[1] = 'set rtp=' .. getcwd() .. '/Xdir' 124 var save_rtp = &rtp 125 exe 'set rtp=' .. getcwd() .. '/Xdir' 131 &rtp = save_rtp 147 var save_rtp = &rtp 148 exe 'set rtp=' .. getcwd() .. '/Xdir' 159 &rtp = save_rtp 175 var save_rtp = &rtp 176 exe 'set rtp=' .. getcwd() .. '/Xdir' 205 &rtp = save_rtp
|
| H A D | test_ins_complete.vim | 125 let save_rtp = &rtp 126 set rtp=Xruntime/some 152 let &rtp = save_rtp 511 call assert_true(stridx(globpath(&rtp, 'syntax/*.vim', 1, 1)[0], '\') != -1)
|
| H A D | test_vim9_cmd.vim | 207 var save_rtp = &rtp 208 &rtp = '.' 214 &rtp = save_rtp
|
| H A D | test_listdict.vim | 840 let old_rtp = &rtp 841 set rtp+=./sautest 847 let &rtp = old_rtp
|
| H A D | test_exists.vim | 8 set rtp+=./sautest
|
| H A D | test_vim9_expr.vim | 3017 var save_rtp = &rtp 3018 &rtp = getcwd() .. '/Xruntime,' .. &rtp 3022 &rtp = save_rtp
|
| /vim-8.2.3635/runtime/spell/ |
| H A D | cleanadd.vim | 15 for s:fname in split(globpath(&rtp, "spell/*.add"), "\n")
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | spellfile.vim | 186 for dir in split(globpath(&rtp, 'spell'), "\n") 200 for dir in split(&rtp, ',')
|
| H A D | getscript.vim | 143 for datadir in split(&rtp,',') + [''] 210 let firstdir = substitute(&rtp,',.*$','','') 545 let firstdir= substitute(&rtp,',.*$','','') 629 let docdir= substitute(&rtp,',.*','','e')."/doc"
|
| H A D | vimball.vim | 109 " use first existing directory from rtp 673 " vimball#VimballHome: determine/get home directory path (usually from rtp) {{{2 680 for home in split(&rtp,',') + [''] 690 let home= substitute(&rtp,',.*$','','')
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | if_pyth.txt | 341 {rtp}/python2 (or python3) and {rtp}/pythonx (for both python versions) for 342 each {rtp} found in 'runtimepath'. 414 It returns a list of {rtp}/python2 (or {rtp}/python3) and 415 {rtp}/pythonx directories for each {rtp} in 'runtimepath'. 882 If you want to use a module, you can put it in the {rtp}/pythonx directory.
|
| H A D | pi_vimball.txt | 57 :echo &rtp 69 normally specified by the runtimepath (|'rtp'|). As an example: >
|
| /vim-8.2.3635/src/ |
| H A D | scriptfile.c | 246 char_u *rtp; in do_in_path() local 278 rtp = rtp_copy; in do_in_path() 279 while (*rtp != NUL && ((flags & DIP_ALL) || !did_one)) in do_in_path() 284 copy_option_part(&rtp, buf, MAXPATHL, ","); in do_in_path()
|
| H A D | spellfile.c | 6358 char_u *rtp; in init_spellfile() local 6381 rtp = p_rtp; in init_spellfile() 6382 while (*rtp != NUL) in init_spellfile() 6391 copy_option_part(&rtp, buf, MAXPATHL, ","); in init_spellfile()
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | chicken.vim | 34 let s:c = globpath(&rtp, 'syntax/cpp.vim', 0, 1)
|
| H A D | yacc.vim | 30 …for s:Cpath in split(globpath(&rtp,(exists("g:yacc_uses_cpp")? "syntax/cpp.vim" : "syntax/c.vim"))…
|
| H A D | vim.vim | 39 …ft packpath pdev pi previewpopup printmbfont pvw qe regexpengine rightleft rtp sbo scrollbind secu… 686 for s:luapath in split(globpath(&rtp,"syntax/lua.vim"),"\n") 709 for s:perlpath in split(globpath(&rtp,"syntax/perl.vim"),"\n") 732 for s:rubypath in split(globpath(&rtp,"syntax/ruby.vim"),"\n") 755 for s:pythonpath in split(globpath(&rtp,"syntax/python.vim"),"\n") 787 for s:tclpath in split(globpath(&rtp,"syntax/tcl.vim"),"\n") 815 for s:mzschemepath in split(globpath(&rtp,"syntax/mzscheme.vim"),"\n")
|
| H A D | lex.vim | 16 for s:Cpath in split(globpath(&rtp,"syntax/cpp.vim"),"\n")
|