| /vim-8.2.3635/runtime/doc/ |
| H A D | vim9.txt | 69 :leg[acy] {cmd} *:leg* *:legacy* 73 with legacy expression syntax. 183 You can call a legacy dict function though: > 827 Example legacy script: > 849 value legacy Vim script Vim9 script ~ 935 %s/a/b legacy Vim: substitute on all lines 939 't legacy Vim: jump to mark t 1307 variable was declared in a legacy function. 1389 " legacy script commands go here 1506 Import in legacy Vim script ~ [all …]
|
| H A D | usr_46.txt | 15 |46.?| Using a Vim9 script from legacy script 56 it Vim will assume legacy script syntax. 125 And you'll see zero. Why? Because in legacy Vim script "+=" will convert the 164 *46.?* Using a Vim9 script from legacy script *source-vim9-script* 166 In some cases you have a legacy Vim script where you want to use items from a
|
| H A D | usr_toc.txt | 347 |46.?| Using a Vim9 script from legacy script
|
| H A D | index.txt | 1404 |:legacy| :leg[acy] make following command use legacy script syntax
|
| H A D | syntax.txt | 1128 COBOL highlighting has different needs for legacy code than it does for fresh 1130 versus development) and other factors. To enable legacy code highlighting, 1619 find the default highlighting (f08) satisfactory. A few legacy constructs 1624 other legacy features excluded from F will be highlighted as todo items and 1651 files may be legacy code but your newer ones may be F codes, and you would
|
| H A D | usr_41.txt | 102 Note: this is how it works in legacy Vim script, which is what we discuss in 129 number, it will be interpreted as an octal number in legacy script!
|
| H A D | gui.txt | 1138 Some quality values are not supported in legacy OSs.
|
| /vim-8.2.3635/src/testdir/ |
| H A D | vim9.vim | 138 " Check that "lines" inside a legacy function has no error. 154 " Check that "lines" inside a legacy function results in the expected error 169 " Execute "lines" in a legacy function, translated as in 206 " Execute "lines" in a legacy function, :def function and Vim9 script. 217 " Execute "lines" in a legacy function, :def function and Vim9 script.
|
| H A D | test_vim9_cmd.vim | 18 assert_fails('legacy', 'E1234:') 29 legacy echo "con" . "cat" 30 legacy let str = 'con' 31 legacy let str .= 'cat' 51 legacy echo 1'000 67 legacy echo .10 81 legacy echo version
|
| H A D | test_vim9_assign.vim | 1615 let s:legacy = 'one' 1616 lockvar s:legacy 1618 s:legacy = 'two' 1622 CheckScriptFailure(lines, 'E741: Value is locked: s:legacy', 1) 1707 legacy edit 1788 # also works for script-local variable in legacy Vim script 1789 s:somevar = 'legacy'
|
| H A D | test_blob.vim | 137 " legacy script white space 350 " Only works in legacy script 520 " only works in legacy script
|
| H A D | test_vim9_func.vim | 1150 legacy call g:TestFunc({-> 0}) 1155 legacy call g:TestFunc({nr -> 0}) 1376 " These argument names are reserved in legacy functions. 1627 # OK in legacy function 2562 legacy echo {x -> 'hello ' .. x}('foo') 2574 legacy call s:Func() 2586 legacy call g:LegacyFunction() 2601 CheckDefFailure(['legacy ' .. cmd .. ' expr'], 'E1189:') 3224 var output = execute('legacy func g:mydict.afunc') 3228 assert_equal(output, execute('legacy func g:mydict.afunc'))
|
| H A D | test_vim9_script.vim | 335 " legacy func for command that's defined later 1031 # legacy syntax is used for 'statusline' 1668 " legacy script 1669 let g:legacy = 1 1673 g:legacy = 0 1676 g:legacy = -1 1678 assert_equal(1, g:legacy) 1681 g:legacy = -1 1683 assert_equal(0, g:legacy) 4484 # legacy script allows for white space [all …]
|
| H A D | test_vim9_expr.vim | 2379 # legacy syntax doesn't work 2956 legacy return #{key: 'ok'}.key 2961 let s:legacy = 'legacy' 2963 return legacy 2966 return s:legacy 2968 call assert_equal('legacy', GetLocal()) 2969 call assert_equal('legacy', GetLocalPrefix()) 2978 legacy return range(3)->map('v:val + 1')
|
| H A D | test_listdict.vim | 28 " This was allowed in legacy Vim script 255 " weird legacy behavior 302 " This was allowed in legacy Vim script
|
| H A D | test_vim9_disassemble.vim | 2347 echo 'legacy'
|
| H A D | test_cmdline.vim | 851 " completion for vim9 and legacy commands
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | vim.vim | 58 " Comments starts with a double quote in legacy script
|
| /vim-8.2.3635/ |
| H A D | README_VIM9.md | 151 same as in Vim9 script. Thus you have legacy syntax and Vim9 syntax.
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | cobol.vim | 205 " many legacy sources have junk in columns 1-6: must be before others
|
| H A D | splint.vim | 120 syn keyword splintFlag contained legacy libmacros likelyboundsread likelyboundswrite likelybool
|
| H A D | clojure.vim | 109 …umbers|_archaic_numbers)?|ddham)|y%(loti%([_ ]nagri|nagri)|mbols%( %(for legacy computing|and pict…
|
| /vim-8.2.3635/src/po/ |
| H A D | it.po | 6674 msgid "E1124: \"%s\" cannot be used in legacy Vim script" 6892 msgid "E1189: Cannot use :legacy with this command: %s" 6893 msgstr "E1189: Non si pu� usare :legacy con questo comando: %s" 7036 msgid "E1234: legacy must be followed by a command" 7037 msgstr "E1234: legacy dev'essere seguito da un comando"
|
| H A D | sr.po | 7125 msgid "E1124: \"%s\" cannot be used in legacy Vim script" 7356 msgid "E1189: Cannot use :legacy with this command: %s" 7357 msgstr "E1189: :legacy не може да се користи са овом командом: %s"
|
| /vim-8.2.3635/src/ |
| H A D | vim9compile.c | 5669 compile_return(char_u *arg, int check_return_type, int legacy, cctx_T *cctx) in compile_return() argument 5677 if (legacy) in compile_return()
|