comparison runtime/doc/testing.txt @ 29290:dc4de65a7fb7

Update runtime files Commit: https://github.com/vim/vim/commit/8a3b805c6c9cae341d560df9c3567ebbe42a7404 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 26 12:21:15 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jun 2022 13:30:04 +0200
parents 57c9377b9c62
children f8116058ca76
comparison
equal deleted inserted replaced
29289:430376616aac 29290:dc4de65a7fb7
89 functionality. This function works only when the GUI is 89 functionality. This function works only when the GUI is
90 running. 90 running.
91 91
92 {event} is a String and the supported values are: 92 {event} is a String and the supported values are:
93 "dropfiles" drop one or more files in a window. 93 "dropfiles" drop one or more files in a window.
94 "findrepl" search and replace text 94 "findrepl" search and replace text.
95 "mouse" mouse button click event. 95 "mouse" mouse button click event.
96 "scrollbar" move or drag the scrollbar 96 "scrollbar" move or drag the scrollbar.
97 "tabline" select a tab page by mouse click. 97 "tabline" select a tab page by mouse click.
98 "tabmenu" select a tabline menu entry. 98 "tabmenu" select a tabline menu entry.
99 99
100 {args} is a Dict and contains the arguments for the event. 100 {args} is a Dict and contains the arguments for the event.
101 101
117 "findrepl": 117 "findrepl":
118 {only available when the GUI has a find/replace dialog} 118 {only available when the GUI has a find/replace dialog}
119 Perform a search and replace of text. The supported items 119 Perform a search and replace of text. The supported items
120 in {args} are: 120 in {args} are:
121 find_text: string to find. 121 find_text: string to find.
122 repl_text: replacement string 122 repl_text: replacement string.
123 flags: flags controlling the find/replace. Supported 123 flags: flags controlling the find/replace. Supported
124 values are: 124 values are:
125 1 search next string (find dialog) 125 1 search next string (find dialog)
126 2 search next string (replace dialog) 126 2 search next string (replace dialog)
127 3 replace string once 127 3 replace string once