Home
last modified time | relevance | path

Searched refs:repl (Results 1 – 19 of 19) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_vim9_cmd.vim1349 var to = 'repl'
1353 assert_equal('one repl two', getline(1))
1508 s:notexist:repl
1510 …CheckDefAndScriptFailure2(lines, 'E488: Trailing characters: :repl', 'E121: Undefined variable: s:…
1513 s-pat-repl
1517 s.pat.repl
1556 s /pat/repl
1560 s #pat#repl
1564 s#pat#repl
1568 s# pat#repl
/vim-8.2.3635/src/
H A Dex_docmd.c4746 char_u *repl; in expand_filename() local
4803 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL) in expand_filename()
4807 repl = expand_env_save(repl); in expand_filename()
4849 vim_free(repl); in expand_filename()
4850 repl = l; in expand_filename()
4866 vim_free(repl); in expand_filename()
4867 repl = l; in expand_filename()
4872 vim_free(repl); in expand_filename()
4966 char_u *repl, in repl_cmdline() argument
9197 char_u *repl; in expand_sfile() local
[all …]
H A Dnormal.c112 static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
828 int repl = FALSE; // get character for replace mode in normal_cmd() local
859 repl = TRUE; // get it in replace mode in normal_cmd()
867 repl = TRUE; in normal_cmd()
870 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG)); in normal_cmd()
877 if (repl) in normal_cmd()
889 if (repl) in normal_cmd()
7198 int repl, // "r" or "gr" command in invoke_edit() argument
7207 if (repl || !stuff_empty()) in invoke_edit()
H A Dconfigure.ac276 dnl two blocks of code, both using "repl", that can't be swapped.
/vim-8.2.3635/runtime/syntax/
H A Dnasm.vim141 …syn match nasmInMacPreProc contained "^\s*%\(push\|repl\)\>"hs=e-4 skipwhite nextgroup=nasmStruct…
160 syn match nasmInMacPreProc contained "^\s*%\(push\|repl\)\>"hs=e-4 skipwhite nextgroup=@nasmGrpNx…
193 syn match nasmCtxPreProc "^\s*%\(push\|repl\)\>"hs=e-4 skipwhite nextgroup=@nasmGrpNxtCtx
H A Dicon.vim21 syn keyword iconFunction real remove rename repl reverse right rtod
H A Dfoxpro.vim264 syn match foxproFunc "\<repl\%[icate]\>\s*("me=e-1
485 syn match foxproCmd "^\s*\<repl\%[ace]\>"
486 syn match foxproCmd "^\s*\<repl\%[ace]\>\s*\<from\>\s*\<arra\%[y]\>"
H A Dprogress.vim222 syn keyword ProgressOperator num-relations num-repl[aced] num-results num-selected-rows num-selecte…
/vim-8.2.3635/runtime/doc/
H A Dmap.txt1373 :com[mand][!] [{attr}...] {cmd} {repl}
1375 {cmd} and its replacement text is {repl}. The
1598 *:command-repl*
1599 The {repl} argument is normally one long string, possibly with "|" separated
1613 The replacement text {repl} for a user defined command is scanned for special
1744 `:vim9script` and in a `:def` function) then {repl} will be executed as in Vim9
H A Dvim9.txt951 s:pattern:repl # invalid command - ERROR
953 s-pattern-repl # invalid command - ERROR
955 s.pattern.repl # invalid command - ERROR
959 s /pattern/repl # invalid command - ERROR
H A Dchange.txt227 - See the section "Insert and Replace mode" |mode-ins-repl| for the other
240 Replace mode" |mode-ins-repl|).
670 `:s/pattern/repl/flags` and then `/search` for
671 something else, `g&` will do `:%s/search/repl/flags`.
H A Dquickref.txt1173 |::s| :s/{pat}/{repl}/ substitute {pat} with {repl}
H A Dinsert.txt8 Inserting and replacing text *mode-ins-repl*
1941 <Esc>. See |mode-ins-repl| for the other special characters in Insert mode.
H A Dusr_41.txt569 :let repl = substitute(line, '\a', "*", "g")
570 :call setline(".", repl)
H A Dautocmd.txt79 {cmd} can be a block, like with `:command`, see |:command-repl|. Example: >
H A Dtags2315 :command-repl map.txt /*:command-repl*
7957 mode-ins-repl insert.txt /*mode-ins-repl*
H A Deval.txt9095 :let repl = ""
9096 :echo "PEEK: ".remote_peek(id, "repl").": ".repl
H A Dversion7.txt9779 highlighted for ":s/pat/repl/c".
H A Dversion8.txt43023 Problem: Vim9: :substitute(pat(repl does not work in Vim9 script.