Mercurial > vim
view runtime/syntax/sbt.vim @ 32363:c114eebb5268 v9.0.1513
patch 9.0.1513: text scrolls unnecessarily when splitting
Commit: https://github.com/vim/vim/commit/b926bf47d61360a4ec5e4867714a08d70fd49965
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Sat May 6 12:53:50 2023 +0100
patch 9.0.1513: text scrolls unnecessarily when splitting
Problem: Text scrolls unnecessarily when splitting and 'splitkeep' is not
"cursor".
Solution: Avoid resetting w_skipcol. (Luuk van Baal, closes #12334)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 06 May 2023 14:00:04 +0200 |
parents | d183d629509e |
children |
line wrap: on
line source
" Vim syntax file " Language: sbt " Maintainer: Steven Dobay <stevendobay at protonmail.com> " Last Change: 2017.04.30 if exists("b:current_syntax") finish endif runtime! syntax/scala.vim syn region sbtString start="\"[^"]" skip="\\\"" end="\"" contains=sbtStringEscape syn match sbtStringEscape "\\u[0-9a-fA-F]\{4}" contained syn match sbtStringEscape "\\[nrfvb\\\"]" contained syn match sbtIdentitifer "^\S\+\ze\s*\(:=\|++=\|+=\|<<=\|<+=\)" syn match sbtBeginningSeq "^[Ss]eq\>" syn match sbtSpecial "\(:=\|++=\|+=\|<<=\|<+=\)" syn match sbtLineComment "//.*" syn region sbtComment start="/\*" end="\*/" syn region sbtDocComment start="/\*\*" end="\*/" keepend hi link sbtString String hi link sbtIdentitifer Keyword hi link sbtBeginningSeq Keyword hi link sbtSpecial Special hi link sbtComment Comment hi link sbtLineComment Comment hi link sbtDocComment Comment