mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
vim-patch:9.0.0863: col() and charcol() only work for the current window (#21038)
Problem: col() and charcol() only work for the current window.
Solution: Add an optional winid argument. (Yegappan Lakshmanan,
closes vim/vim#11466, closes vim/vim#11461)
4c8d2f02b3
Cherry-pick test_functions.vim change from patch 8.2.0633.
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
This commit is contained in:
@@ -73,12 +73,12 @@ return {
|
||||
chansend={args=2},
|
||||
char2nr={args={1, 2}, base=1},
|
||||
charclass={args=1, base=1},
|
||||
charcol={args=1, base=1},
|
||||
charcol={args={1, 2}, base=1},
|
||||
charidx={args={2, 3}, base=1},
|
||||
chdir={args=1, base=1},
|
||||
cindent={args=1, base=1},
|
||||
clearmatches={args={0, 1}, base=1},
|
||||
col={args=1, base=1},
|
||||
col={args={1, 2}, base=1},
|
||||
complete={args=2, base=2},
|
||||
complete_add={args=1, base=1},
|
||||
complete_check={},
|
||||
|
Reference in New Issue
Block a user