mirror of
https://github.com/vim/vim.git
synced 2025-11-14 23:04:02 -05:00
closes: #18732 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
47 lines
602 B
VimL
47 lines
602 B
VimL
" Vim :prompt{find,repl} commands
|
|
|
|
|
|
promptfind foo
|
|
promptrepl foo
|
|
|
|
promptfind a
|
|
\ really
|
|
\ long
|
|
\ search
|
|
\ string
|
|
promptrepl a
|
|
\ really
|
|
\ long
|
|
\ search
|
|
\ string
|
|
|
|
|
|
" no tail comment or trailing bar
|
|
|
|
promptfind foo " more search string
|
|
promptfind foo | more search string
|
|
|
|
|
|
def Vim9Context()
|
|
promptfind foo
|
|
promptrepl foo
|
|
|
|
promptfind a
|
|
\ really
|
|
\ long
|
|
\ search
|
|
\ string
|
|
promptrepl a
|
|
\ really
|
|
\ long
|
|
\ search
|
|
\ string
|
|
|
|
|
|
# no tail comment or trailing bar
|
|
|
|
promptfind foo # more search string
|
|
promptfind foo | more search string
|
|
enddef
|
|
|