Mercurial > vim
view runtime/syntax/cabalproject.vim @ 24790:14b86681e6e6 v8.2.2933
patch 8.2.2933: when 'clipboard' is "unnamed" zp does not work correctly
Commit: https://github.com/vim/vim/commit/6e0b553fa12fc5ad5d8ee3d8457e7cb16f38b56f
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 4 17:11:47 2021 +0200
patch 8.2.2933: when 'clipboard' is "unnamed" zp does not work correctly
Problem: When 'clipboard' is "unnamed" zp and zP do not work correctly.
Solution: Pass -1 to str_to_reg() and fix computing the character width
instead of using the byte length. (Christian Brabandt,
closes #8301, closes #8317)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 04 Jun 2021 17:15:03 +0200 |
parents | 29c5f168c6fd |
children |
line wrap: on
line source
" Vim syntax file " Language: Cabal Project " Maintainer: profunctor@pm.me " Last Change: Marcin Szamotulski " Original Author: Marcin Szamotulski if exists("b:current_syntax") finish endif syn match CabalProjectComment /^\s*--.*/ contains=@Spell syn match CabalProjectField /^\w\%(\w\|-\)\+/ contains=@NoSpell syn keyword CabalProjectBoolean true false True False syn keyword CabalProjectCompiler ghc ghcjs jhc lhc uhc haskell-suite syn match CabalProjectNat /\<\d\+\>/ syn keyword CabalProjectJobs $ncpus syn keyword CabalProjectProfilingLevel default none exported-functions toplevel-functions all-functions hi def link CabalProjectComment Comment hi def link CabalProjectField Statement hi def link CabalProjectBoolean Boolean hi def link CabalProjectCompiler Identifier hi def link CabalProjectNat Number hi def link CabalProjectJobs Number hi def link CabalProjectProfilingLevel Statement let b:current_syntax = "cabal.project"