comparison runtime/doc/eval.txt @ 20635:3e36a51ff152 v8.2.0871

patch 8.2.0871: cannot use getmarklist() as a method Commit: https://github.com/vim/vim/commit/f17e7ea67a798d0aa45ce24ea80c9e21d5164326 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 14:14:44 2020 +0200 patch 8.2.0871: cannot use getmarklist() as a method Problem: Cannot use getmarklist() as a method. Solution: Make getmarklist() work as a method. Add one to the column number to match getpos(). (Yegappan Lakshmanan, closes #6176)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 14:15:05 +0200
parents d6827bd31d1d
children c2beb6baa42c
comparison
equal deleted inserted replaced
20634:524fb8e122ba 20635:3e36a51ff152
5383 file - file name 5383 file - file name
5384 5384
5385 Refer to |getpos()| for getting information about a specific 5385 Refer to |getpos()| for getting information about a specific
5386 mark. 5386 mark.
5387 5387
5388 Can also be used as a |method|: >
5389 GetBufnr()->getmarklist()
5388 5390
5389 getmatches([{win}]) *getmatches()* 5391 getmatches([{win}]) *getmatches()*
5390 Returns a |List| with all matches previously defined for the 5392 Returns a |List| with all matches previously defined for the
5391 current window by |matchadd()| and the |:match| commands. 5393 current window by |matchadd()| and the |:match| commands.
5392 |getmatches()| is useful in combination with |setmatches()|, 5394 |getmatches()| is useful in combination with |setmatches()|,