Home
last modified time | relevance | path

Searched refs:echo (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/vim-8.2.3635/src/testdir/
H A Dtest_execute_func.vim8 let nested = execute('echo "nested\nlines"')
9 echo 'got: "' . nested . '"'
14 echo 'broken'
26 echo 'this'
27 let evaled = execute('echo "that"')
28 echo 'theend'
48 call assert_equal("\nsomething\nnice", execute(['echo "something"', 'echo "nice"']))
50 \ 'echo n',
58 echo ''
70 echo ''
[all …]
H A Dtest_debugger.vim83 call RunDbgCmd(buf, ':debug echo Foo()', ['cmd: echo Foo()'])
205 call RunDbgCmd(buf, ':debug echo Foo()', ['cmd: echo Foo()'])
988 echo "here"
989 echo "and"
990 echo "there"
996 echo "first"
1045 echo it
1047 echo "done"
1063 echo "first"
1074 echo "done"
[all …]
H A Dtest_vim9_disassemble.vim6 echo "not"
18 echo
19 echo arg
20 echo local
21 echo &lines
22 echo v:version
26 echo g:auto#var
33 echo &tabstop
34 echo $ENVVAR
35 echo @z
[all …]
H A Dtest_expr.vim146 call assert_fails('echo "\<C-">')
426 call assert_fails('echo printf("%f")')
533 call assert_fails('echo 1X', 'E15:')
534 call assert_fails('echo 0b1X', 'E15:')
535 call assert_fails('echo 0b12', 'E15:')
536 call assert_fails('echo 0x1X', 'E15:')
537 call assert_fails('echo 011X', 'E15:')
561 \ 'echo',
586 call assert_equal('"echo w:wvar1 w:wvar2', @:)
607 call assert_equal('"echo &compatible', @:)
[all …]
H A Dtest_random.vim30 call assert_fails('echo srand(1.2)', 'E805:')
32 call assert_fails('echo srand([1])', 'E745:')
33 call assert_fails('echo rand("burp")', 'E475:')
34 call assert_fails('echo rand([1, 2, 3])', 'E730:')
35 call assert_fails('echo rand([[1], 2, 3, 4])', 'E730:')
36 call assert_fails('echo rand([1, [2], 3, 4])', 'E730:')
37 call assert_fails('echo rand([1, 2, [3], 4])', 'E730:')
38 call assert_fails('echo rand([1, 2, 3, [4]])', 'E730:')
H A Dtest_system.vim8 call assert_equal("123\n", system('echo 123'))
9 call assert_equal(['123'], systemlist('echo 123'))
14 call assert_equal("123\n", system('echo 123'))
15 call assert_equal(["123\r"], systemlist('echo 123'))
54 if has('unix') " echo $? only works on Unix
55 let cmd = ' -es -c "source Xscript" +q; echo "result=$?"'
66 if has('unix') " echo $? only works on Unix
76 if has('unix') " echo $? only works on Unix
77 let cmd = ' -es -c "call doesnotexist()" +q; echo $?'
86 if has('unix') " echo $? only works on Unix
[all …]
H A Dtest_vim9_func.vim28 echo nothing
97 echo 'foo'
874 echo a:arg
886 echo s
896 echo nr
904 echo nr
925 echo nr
1203 echo l
1212 echo l
1425 echo nr
[all …]
H A Dtest_viminfo.vim261 call histadd(':', "echo '11'")
263 call histadd(':', "echo '22'")
265 call histadd(':', "echo '33'")
271 call histadd(':', "echo '15'")
273 call histadd(':', "echo '27'")
285 call histadd(':', "echo '8'")
287 call histadd(':', "echo '39'")
299 call histadd(':', "echo '8'")
301 call histadd(':', "echo '15'")
899 \ " :echo 'Hello'\<CR>",
[all …]
H A Dtest_vim9_expr.vim399 echo false
1018 echo 2>3
1023 echo 2 >3
1028 echo 2> 3
1033 echo 2!=3
2925 echo ++n
2930 echo --n
2935 echo +-n
2940 echo -+n
3309 echo d
[all …]
H A DMake_ming.mak7 # Requires a set of Unix tools: echo, diff, etc.
45 else ( echo No failures reported > test_result.log )
47 @echo.
48 @echo Test results:
50 @if exist test.log ( echo TEST FAILURE & exit /b 1 ) \
51 else ( echo ALL DONE )
123 & echo $(basename $@) FAILED >> test.log ) \
137 @echo $(VIMPROG) > vimcmd
142 @echo $(VIMPROG) > vimcmd
147 @echo $(VIMPROG) > vimcmd
[all …]
H A DMake_dos.mak4 # Requires a set of Unix tools: echo, diff, etc.
33 else ( echo No failures reported > test_result.log )
35 @echo.
36 @echo Test results:
38 @if exist test.log ( echo TEST FAILURE & exit /b 1 ) \
39 else ( echo ALL DONE )
111 & echo $* FAILED >> test.log ) \
125 @echo $(VIMPROG) > vimcmd
130 @echo $(VIMPROG) > vimcmd
135 @echo $(VIMPROG) > vimcmd
[all …]
H A Dtest_vim9_script.vim261 {|echo 'yes'|}
364 echo 'none'
559 echo P()
594 echo d.member
2544 echo 'clear'
2856 echo n
2957 echo v1
3882 echo g:var
4247 echo one
4257 echo one
[all …]
H A Dtest_vim9_cmd.vim51 legacy echo 1'000
58 echo .10
67 legacy echo .10
72 echo v:version
76 echo version
222 echo 'one'
232 echo 11 +
1416 echo 'more'
1422 echo 'dict'
1428 echo 'list'
[all …]
H A Dtest_terminal2.vim198 \ 'echo "this is standard error" >&2',
199 \ 'echo "this is standard out" >&1',
227 call feedkeys("echo " . i . "\<CR>", 'xt')
234 " Every "echo nr" must only appear once
308 " let contents = ['@echo off', 'exit %1']
480 call term_sendkeys(buf, "echo -e '\\033[1 q'\r")
485 call term_sendkeys(buf, "echo -e '\\033[2 q'\r")
490 call term_sendkeys(buf, "echo -e '\\033[3 q'\r")
495 call term_sendkeys(buf, "echo -e '\\033[4 q'\r")
500 call term_sendkeys(buf, "echo -e '\\033[5 q'\r")
[all …]
/vim-8.2.3635/runtime/
H A Dbugreport.vim20 : !echo "uname -a" >bugreport.txt
28 : echo 'directory "' . a:n . '" exists'
35 : echo '"' . a:n . '" is readable'
37 : echo '"' . a:n . '" is NOT readable'
40 : echo "--- Directories and Files ---"
41 : echo '$VIM = "' . $VIM . '"'
43 : echo '$VIMRUNTIME = "' . $VIMRUNTIME . '"'
52 : echo "--- Scripts sourced ---"
67 : echo "--- Abbreviations ---"
71 : echo "--- Highlighting ---"
[all …]
/vim-8.2.3635/.github/workflows/
H A Dci.yml95 echo "LINUX_VERSION=$(uname -r)"
98 echo "TMPDIR=${{ runner.temp }}"
102 echo "TEST=testtiny"
118 echo "LDFLAGS=--coverage"
124 echo "TEST=-C src testgui"
127 echo "TEST=unittests"
138 echo "CFLAGS=$CFLAGS"
282 echo "TEST=testtiny"
397 echo %LUA_RELEASE%>> urls.txt
398 echo %WINPTY_URL%>> urls.txt
[all …]
/vim-8.2.3635/ci/
H A Dif_ver-1.vim6 echo "*** Interface versions ***\n"
8 echo 'Lua:'
11 echo 'MzScheme:'
14 echo 'Perl:'
17 echo 'Ruby:'
20 echo 'Tcl:'
23 echo 'Python 2:'
H A Dappveyor.bat1 @echo off
11 echo "Building MSVC 64bit console Version"
16 echo Build failure.
22 echo "Building MSVC 64bit GUI Version"
35 echo Build failure.
40 echo "version output MSVC console"
42 echo "version output MSVC GUI"
/vim-8.2.3635/runtime/tools/
H A Dccfilter.c105 char *echogets(char *s, int echo) in echogets() argument
108 if (echo!=0 && retval!=NULL) { in echogets()
121 int echo = 0; /* Echo stdin to stderr */ in main() local
142 echo = 1; in main()
171 stay = ( echogets(Line, echo) != NULL ); in main()
191 ok = (echogets(Reason, echo) != NULL); in main()
250 stay = (echogets(Line2, echo) != NULL); in main()
256 stay = (echogets(Line2, echo) != NULL); in main()
285 stay = (echogets(Line, echo) != NULL); in main()
287 stay = (echogets(Line2, echo) != NULL); in main()
[all …]
/vim-8.2.3635/runtime/indent/
H A Dsystemverilog.vim72 echo vverb_str "De-indent after a multiple-line comment."
95 echo vverb_str "Indent after function/task/class block statement."
103 echo vverb_str "Indent after module statement."
109 echo vverb_str "Indent after a multiple-line module statement."
119 if vverb | echo vverb_str "Indent after begin statement." | endif
127 if vverb | echo vverb_str "Indent after begin statement." | endif
140 echo vverb_str "De-indent after the end of one-line statement."
168 echo vverb_str "Indent after a `ifdef or `else statement."
187 echo vverb_str "De-indent the end of a module."
202 echo vverb_str "De-indent a stand alone begin statement."
[all …]
H A Dverilog.vim84 echo vverb_str "De-indent after a multiple-line comment."
97 if vverb | echo vverb_str "Indent after a block statement." | endif
105 echo vverb_str "Indent after function/task block statement."
113 echo vverb_str "Indent after module statement."
119 echo vverb_str "Indent after a multiple-line module statement."
129 if vverb | echo vverb_str "Indent after begin statement." | endif
143 echo vverb_str "De-indent after the end of one-line statement."
184 if vverb | echo vverb_str "De-indent the end of a block." | endif
188 echo vverb_str "De-indent the end of a module."
201 echo vverb_str "De-indent a stand alone begin statement."
[all …]
/vim-8.2.3635/runtime/macros/
H A Dless.vim29 echo "\n"
84 echo "<Space> One page forward b One page backward"
86 echo "<Enter> One line forward k One line backward"
87 echo "G End of file g Start of file"
88 echo "N% percentage in file"
89 echo "\n"
93 echo "\n"
96 echo "\n"
97 echo ":n<Enter> Next file :p<Enter> Previous file"
98 echo "\n"
[all …]
/vim-8.2.3635/runtime/autoload/
H A Dtar.vim28 echo "***warning*** this version of tar needs vim 7.2"
582 echo "***warning*** unable to read file<".fname.">"
624 echo "***note*** successfully extracted ".fname
635 echo "***note*** successfully extracted ".fname
646 echo "***note*** successfully extracted ".fname
657 echo "***note*** successfully extracted ".fname
668 echo "***note*** successfully extracted ".fname
679 echo "***note*** successfully extracted ".fname
690 echo "***note*** successfully extracted ".fname
701 echo "***note*** successfully extracted ".fname
[all …]
H A Dzip.vim26 echo "***warning*** this version of zip needs vim 7.2 or later"
90 echohl Error | echo "***error*** (zip#Browse) unzip not available on your system"
100 echohl Error | echo "***error*** (zip#Browse) File not readable<".a:zipfile.">" | echohl None
122 " a :echo &ft
176 …echohl Error | echo "***error*** (zip#Browse) Please specify a file, not a directory" | echohl None
388 …echohl Error | echo "***error*** (zip#Extract) Please specify a file, not a directory" | echohl No…
399 …echohl Error | echo "***error*** ".g:zip_extractcmd." ".b:zipfile." ".fname.": failed!" | echohl N…
403 echo "***note*** successfully extracted ".fname
439 echo "***note*** ".a:errmsg
441 echohl WarningMsg | echo "***warning*** ".a:errmsg | echohl NONE
[all …]
/vim-8.2.3635/
H A DREADME_VIM9.md267 echo VimOld()
271 echo Python()
272 echo 'Python: ' .. reltimestr(reltime(start))
275 echo Lua()
276 echo 'Lua: ' .. reltimestr(reltime(start))
279 echo VimNew()
330 echo VimOld()
337 echo Python()
344 echo Lua()
345 echo 'Lua: ' .. reltimestr(reltime(start))
[all …]

12345678910>>...12