Tagged Questions
0
votes
1answer
32 views
Vim Syntax Modify
I am trying to color different levels of parentheses differently in vim -like rainbow parentheses. But I couldn't do it without breaking, for example, css highlighting.
Problem is that: syntax of ...
2
votes
2answers
101 views
Vim Syntax: match only at the start of region - not subsequent ones
I have the following Vim syntax file:
" Vim syntax file
" Language: ScreenplayText - the textual source of ScreenplayXML
" Maintainer: Shlomi Fish <shlomif@iglu.org.il>
" Home: ...
1
vote
0answers
94 views
Why does nextgroup not match newline without trailing whitespace?
Consider the following 3 sets of highlight groups and syntax matches:
hi Foo ctermfg=black ctermbg=red guifg=black guibg=red
hi Filler ctermfg=black ctermbg=green guifg=black ...
2
votes
1answer
90 views
onoremap vim c-u purpose
I'm trying to figure out the syntax of the onoremap function in vim.
Specially, I am confused over this line in the manual, regarding the use of c-u:
The CTRL-U (<C-U>) is used to remove the ...
3
votes
1answer
174 views
vim syntax highlighting for mysql general and slow query logs
I've scoured Github and vim.org for syntax highlighting for MySQL log files. Specifically for slow-query logs, but I've come up empty handed. I've used the mysqldumpslow command to make grok'ing ...
2
votes
1answer
214 views
syntax-check a VimL script
I have a sizable vim script (a .vim file, in viml syntax). I'd like to check (but not execute!) the file for simple syntax errors.
How do I accomplish this?
I just want a very rough syntax check. ...