Mercurial > vim
view runtime/compiler/cucumber.vim @ 29024:9f25e0ed831d v8.2.5034
patch 8.2.5034: there is no way to get the byte index from a virtual column
Commit: https://github.com/vim/vim/commit/5a6ec10cc80ab02eeff644ab19b82312630ea855
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 27 21:58:00 2022 +0100
patch 8.2.5034: there is no way to get the byte index from a virtual column
Problem: There is no way to get the byte index from a virtual column.
Solution: Add virtcol2col(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10477,
closes #10098)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 27 May 2022 23:00:03 +0200 |
parents | 43efa4f5a8ea |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Cucumber " Maintainer: Tim Pope <vimNOSPAM@tpope.org> " Last Change: 2016 Aug 29 if exists("current_compiler") finish endif let current_compiler = "cucumber" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C CompilerSet makeprg=cucumber CompilerSet errorformat= \%W%m\ (Cucumber::Undefined), \%E%m\ (%\\S%#), \%Z%f:%l, \%Z%f:%l:%.%# let &cpo = s:cpo_save unlet s:cpo_save " vim:set sw=2 sts=2: