Mercurial > vim
view runtime/syntax/scss.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 | 5c40013d45ee |
children |
line wrap: on
line source
" Vim syntax file " Language: SCSS " Maintainer: Tim Pope <vimNOSPAM@tpope.org> " Filenames: *.scss " Last Change: 2019 Dec 05 if exists("b:current_syntax") finish endif runtime! syntax/sass.vim syn clear sassComment syn clear sassCssComment syn clear sassEndOfLineComment syn match scssComment "//.*" contains=sassTodo,@Spell syn region scssCssComment start="/\*" end="\*/" contains=sassTodo,@Spell hi def link scssCssComment scssComment hi def link scssComment Comment let b:current_syntax = "scss" " vim:set sw=2: