Mercurial > vim
view runtime/syntax/xbl.vim @ 32260:8f77a43f8aac v9.0.1461
patch 9.0.1461: ruler not drawn correctly when using 'rulerformat'
Commit: https://github.com/vim/vim/commit/fc8a601c3251c0388a88c1235b18c529385f7196
Author: Sean Dewar <seandewar@users.noreply.github.com>
Date: Mon Apr 17 16:41:20 2023 +0100
patch 9.0.1461: ruler not drawn correctly when using 'rulerformat'
Problem: Ruler not drawn correctly when using 'rulerformat'.
Solution: Adjust formatting depending on whether the ruler is drawn in the
statusline or the command line. (Sean Dewar, closes #12246)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 17 Apr 2023 17:45:06 +0200 |
parents | 82b5078be2dd |
children |
line wrap: on
line source
" Vim syntax file " Language: XBL 1.0 " Maintainer: Doug Kearns <dougkearns@gmail.com> " Latest Revision: 2007 November 5 if exists("b:current_syntax") finish endif let s:cpo_save = &cpo set cpo&vim runtime! syntax/xml.vim unlet b:current_syntax syn include @javascriptTop syntax/javascript.vim unlet b:current_syntax syn region xblJavascript \ matchgroup=xmlCdataStart start=+<!\[CDATA\[+ \ matchgroup=xmlCdataEnd end=+]]>+ \ contains=@javascriptTop keepend extend let b:current_syntax = "xbl" let &cpo = s:cpo_save unlet s:cpo_save " vim: ts=8