Mercurial > vim
view runtime/syntax/jargon.vim @ 34146:23bb675796f0 v9.1.0034
patch 9.1.0034: Window scrolls unexpectedly when 'scrollbind' is set
Commit: https://github.com/vim/vim/commit/ac4cffc6d9d307778d8a2945adab70244470bbb8
Author: Christian Brabandt <cb@256bit.org>
Date: Tue Jan 16 17:22:38 2024 +0100
patch 9.1.0034: Window scrolls unexpectedly when 'scrollbind' is set
Problem: Window may unexpectedly scroll when 'scrollbind' is set
and setting a buffer-local option using setbufvar()
(Boris Staletic)
Solution: Save and restore the windows topline before opening the
popup window.
fixes: #13863
closes: #13869
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 16 Jan 2024 17:30:10 +0100 |
parents | bceeded72898 |
children |
line wrap: on
line source
" Vim syntax file " Language: Jargon File " Maintainer: Dan Church (https://github.com/h3xx) " Last Change: 2020 Mar 16 " " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif syn region jargonHeader start="^:" end="$" contains=jargonChaptTitle syn match jargonChaptTitle /:[^:]*:/ contained syn match jargonEmailAddr /[+._A-Za-z0-9-]\+@[+._A-Za-z0-9-]\+/ syn match jargonUrl +\(https\?\|ftp\)://[^\t )"]*+ syn region jargonMark start="{[^\t {}]" end="}" " Define the default highlighting. " Only when an item doesn't have highlighting yet hi def link jargonChaptTitle Title hi def link jargonEmailAddr Comment hi def link jargonUrl Comment hi def link jargonMark Label let b:current_syntax = "jargon"