diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-01-31 17:40:55 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-31 17:40:55 +0000 |
commit | 9e0208f51cf1354ce0a7d3988133041a78681605 (patch) | |
tree | 21409202f259448aaca319fc084c536656b18190 /runtime/doc | |
parent | 223a950a85448253780da4e821a5b23dcdfad28f (diff) | |
download | vim-git-9e0208f51cf1354ce0a7d3988133041a78681605.tar.gz |
patch 8.2.4276: separate test function for the GUI scrollbarv8.2.4276
Problem: Separate test function for the GUI scrollbar.
Solution: Use test_gui_event(). (Yegappan Lakshmanan, closes #9674)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/builtin.txt | 2 | ||||
-rw-r--r-- | runtime/doc/usr_41.txt | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 943cd5175..98c358d6a 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -654,8 +654,6 @@ test_null_string() String null value for testing test_option_not_set({name}) none reset flag indicating option was set test_override({expr}, {val}) none test with Vim internal overrides test_refcount({expr}) Number get the reference count of {expr} -test_scrollbar({which}, {value}, {dragging}) - none scroll in the GUI for testing test_setmouse({row}, {col}) none set the mouse position for testing test_settime({expr}) none set current time for testing test_srand_seed([seed]) none set seed for testing srand() diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index ebfbbe6bb..7bb363b43 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -1130,7 +1130,6 @@ Testing: *test-functions* test_setmouse() set the mouse position test_feedinput() add key sequence to input buffer test_option_not_set() reset flag indicating option was set - test_scrollbar() simulate scrollbar movement in the GUI test_refcount() return an expression's reference count test_srand_seed() set the seed value for srand() test_unknown() return a value with unknown type |