Mercurial > vim
view runtime/syntax/squirrel.vim @ 33575:8fc442c731ca v9.0.2032
patch 9.0.2032: cannot get mouse click pos for tab or virt text
Commit: https://github.com/vim/vim/commit/f5a94d5165bb9e390797da50a1fa7a87df3fbee4
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun Oct 15 10:03:30 2023 +0200
patch 9.0.2032: cannot get mouse click pos for tab or virt text
Problem: Cannot accurately get mouse clicking position when clicking on
a TAB or with virtual text.
Solution: Add a "coladd" field to getmousepos() result.
closes: #13335
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 15 Oct 2023 10:15:05 +0200 |
parents | c725b8e17f1f |
children | c62bca3b8d82 |
line wrap: on
line source
" Vim syntax file " Language: squirrel " Current Maintainer: Matt Dunford (zenmatic@gmail.com) " URL: https://github.com/zenmatic/vim-syntax-squirrel " Last Change: 2021 Nov 28 " http://squirrel-lang.org/ " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif " inform C syntax that the file was included from cpp.vim let b:filetype_in_cpp_family = 1 " Read the C syntax to start with runtime! syntax/c.vim unlet b:current_syntax " squirrel extensions syn keyword squirrelStatement delete this in yield resume base clone syn keyword squirrelAccess local syn keyword cConstant null syn keyword squirrelModifier static syn keyword squirrelType bool instanceof typeof syn keyword squirrelExceptions throw try catch syn keyword squirrelStructure class function extends constructor syn keyword squirrelBoolean true false syn keyword squirrelRepeat foreach syn region squirrelMultiString start='@"' end='"$' end='";$'me=e-1 syn match squirrelShComment "^\s*#.*$" " Default highlighting hi def link squirrelAccess squirrelStatement hi def link squirrelExceptions Exception hi def link squirrelStatement Statement hi def link squirrelModifier Type hi def link squirrelType Type hi def link squirrelStructure Structure hi def link squirrelBoolean Boolean hi def link squirrelMultiString String hi def link squirrelRepeat cRepeat hi def link squirrelShComment Comment let b:current_syntax = "squirrel" " vim: ts=8