diff options
| author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-11-01 16:26:19 +0000 |
|---|---|---|
| committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-11-26 18:53:11 +0000 |
| commit | 2ad92e947650cc502952b3ec23a23f9862f3a76d (patch) | |
| tree | b5a115fa3b2017130e97a9b1a7046265d7568749 /src/nvim/testdir/test_execute_func.vim | |
| parent | 38a831e54a7261fda06555bc7464546ecfcbf897 (diff) | |
| download | rneovim-2ad92e947650cc502952b3ec23a23f9862f3a76d.tar.gz rneovim-2ad92e947650cc502952b3ec23a23f9862f3a76d.tar.bz2 rneovim-2ad92e947650cc502952b3ec23a23f9862f3a76d.zip | |
vim-patch:8.1.2013: more functions can be used as methods
Problem: More functions can be used as methods.
Solution: Make various functions usable as a method.
https://github.com/vim/vim/commit/f92e58cadb03156879e9bdbf6341bf662d9c87cc
Cherry-pick s:normalize_fname for tolower test from v8.1.0894 and v8.1.1417 (even though it is
unused for now).
Fix header for win_id2tabwin in eval.txt.
Diffstat (limited to 'src/nvim/testdir/test_execute_func.vim')
| -rw-r--r-- | src/nvim/testdir/test_execute_func.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_execute_func.vim b/src/nvim/testdir/test_execute_func.vim index f2c7da0aa9..2cb6d73407 100644 --- a/src/nvim/testdir/test_execute_func.vim +++ b/src/nvim/testdir/test_execute_func.vim @@ -99,7 +99,7 @@ func Test_win_execute() if has('textprop') let popupwin = popup_create('the popup win', {'line': 2, 'col': 3}) redraw - let line = win_execute(popupwin, 'echo getline(1)') + let line = 'echo getline(1)'->win_execute(popupwin) call assert_match('the popup win', line) call popup_close(popupwin) |