0
votes
3answers
53 views

How does .vimrc set its own filetype?

In response to this question on SuperUser, I wrote a small vimscript that will detect the filetype of a symbolic link and change the syntax highlighting: au BufNewFile,BufRead * if &syntax == ...
3
votes
1answer
48 views

Superpose two vim syntax matches on the same character

I'm defining the following syntax rules in a vimscript: hi MyBold term=bold gui=bold hi MyRed ctermfg=red guifg=#ff0000 And later on, I want to apply both highlights to the same character. So ...
0
votes
2answers
48 views

Vim highlighting nested regions

I'm working with vim for several months now, and I still try to improve my experience with this great editor. What I try to do is to create a syntax highlighting file for spice netlists (electronic ...
0
votes
1answer
29 views

vim syntax scripts “sourcing” another, but only for matching lines

I'm writing a vim syntax script and I want to be able to make lines matching a certain pattern, say, '^>', "source" or imitate the markdown syntax highlighting. Is there a way to do this at the ...
2
votes
1answer
164 views

Vim syntax highlighting for special comments

Is there a simple way in Vim to extend the syntax highlighting for a language to allow for important comments to stand out? For instance, if a line that starts with // denotes a regular comment in a C ...
3
votes
2answers
133 views

In VIM, is there any way to define syn region for template angle brackets without clashing with less than sign?

As for {,} and [,] and (, ), I really would like to be able to define syntax region for <, > to be used for C++ template usage like the following: a<b> But, is there any way to create ...
2
votes
1answer
160 views

gVim: remove syntax highlighting groups

Original title was «Language-specific color-schemes prevent simpler ones from coloring certain language-specific tags» I'm using gVim 7.3 (on Ubuntu 12.04 Arch x86/64, for that matters). UPDATE ...
2
votes
2answers
254 views

Changing filetype based on file extention in vim

I want to change the filetype based on file extension in vim. I have the following code in the my .vimrc autocmd BufNew,BufNewFile,BufRead *.txt,*.text,*.md,*.markdown setlocal ft=markdown But ...
5
votes
3answers
297 views

Vim custom syntax highlighting background only

I want to customize syntax highlighting in Vim (GUI version). There is an existing syntax file for my language. I want to add to that syntax highlighting a background colour to each line if that line ...