Mercurial > vim
view runtime/ftplugin/meson.vim @ 32830:6e53cf9745f4 v9.0.1728
patch 9.0.1728: missing winid argument for virtcol()
Commit: https://github.com/vim/vim/commit/825cf813fa0fddf085fcbd3194781e875320ff63
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu Aug 17 22:55:25 2023 +0200
patch 9.0.1728: missing winid argument for virtcol()
Problem: missing winid argument for virtcol()
Solution: Add a {winid} argument to virtcol()
Other functions col(), charcol() and virtcol2col() support a {winid}
argument, so it makes sense for virtcol() to also support than.
Also add test for virtcol2col() with 'showbreak' and {winid}.
closes: #12633
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 17 Aug 2023 23:00:06 +0200 |
parents | babd9f1dbe12 |
children | 8ae680be2a51 |
line wrap: on
line source
" Vim filetype plugin file " Language: meson " License: VIM License " Maintainer: Liam Beguin <liambeguin@gmail.com> " Original Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com> " Last Change: 2018 Nov 27 if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 let s:keepcpo= &cpo set cpo&vim setlocal commentstring=#\ %s setlocal comments=:# setlocal formatoptions+=croql formatoptions-=t let b:undo_ftplugin = "setl com< cms< fo<" if get(g:, "meson_recommended_style", 1) setlocal expandtab setlocal shiftwidth=2 setlocal softtabstop=2 let b:undo_ftplugin .= " | setl et< sts< sw<" endif if exists("loaded_matchit") && !exists("b:match_words") let b:match_words = '\<if\>:\<elif\>:\<else\>:\<endif\>,' . \ '\<foreach\>:\<break\>:\<continue\>:\<endforeach\>' let b:undo_ftplugin .= " | unlet! b:match_words" endif if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") let b:browsefilter = "Meson Build Files (meson.build)\tmeson.build\n" . \ "All Files (*.*)\t*.*\n" let b:undo_ftplugin .= " | unlet! b:browsefilter" endif let &cpo = s:keepcpo unlet s:keepcpo