0
votes
1answer
26 views

Vim syntax highlighting for ARB templates (ActiveAdmin) is not working

When I open ARB template with Vim syntax highlighting is not working: -app/views/admin/news/_show.html.arb panel "#{t('active_admin.details', model: "News")}" do attributes_table_for news do ...
3
votes
3answers
76 views

while loop in while loop in bash script isn't properly highlighted in vim

I am trying to write a while loop within one while loop in bash , the syntax of the second while doesn't get highlighted . Is there any special syntax for using this ? while [ "ka" = $name ] do ...
0
votes
1answer
29 views

vim syntax highlighting on top of c.vim, “contain” doesn't quite work

I am trying to build my own Objective-C highlighting scheme for vim. The problem is that when I define some rule with contained it still being applied even if there are no rules containing this one. I ...
0
votes
1answer
43 views

Syntax Highlighting for Template Toolkit (.tt files) in VIM

My goal is to get syntax highlighting for files using extension *.tt and so far it's been a frustrating "no" every time. I found the vim-perl plugin. Installed using legacy method 'make install' and ...
1
vote
2answers
61 views

Vim: Sudo Edit Breaks Apache Syntax Highlighting

Sudo Edit (sudo -e) allows unprivileged users to edit files securely. To achieve this, it makes a temporary copy of a file to edit and then copies it over when editing is done. When I'm editing an ...
0
votes
3answers
98 views

VIM syntax coloring lua function name?

I'm using VIM via terminal (SSH) and want to modify my syntax coloring settings in VIM to make the function_name Yellow for Lua programming. Unfortunately, I can't figure out how to do that. For ...
0
votes
1answer
21 views

Vim syntax colouring for gcov not working as inteded

I'm new to Vim, and am a little puzzled. I'm using gcov (through clang), and installed a .gcov vim syntax file from here by placing it in my vim syntax folder - but the highlighting doesn't appear. ...
0
votes
1answer
35 views

syntax highlighting for Assembler

I need to add support for assembler language I'm working with (it is not x86, 68K, or 8051 which are well supported by vim). I looked at the existing syntax files, and here are my questions 1) When ...
1
vote
2answers
76 views

Perl highlighting quote delimiter problems - Where can I find a syntax/perl.vim that addresses this?

I am dealing with a lot of files which have qq{...} strings that do a great job at tripping up vim making it turn the entire rest of the file green. I have tried this perl syntax definition to no ...
0
votes
1answer
21 views

ft-syntax-omni is not working

Looks like ft-syntax-omni has the ability to fill the omni auto completion list from syntax highlighting, but I couldn't get it to work: In my VIMrc, I've got: au BufRead,BufNewFile *.idc set ft=idc ...
0
votes
2answers
43 views

Make vim highlight python builtins when they are not followed by a dot

Is there a way to highlight built in Python functions in vim only when they are preceded by 1 more whitespaces? Furthermore, is there a modular way to do this? That is, I don't want to edit every ...
0
votes
1answer
122 views

Extending Javascript syntax highlighting in vim

I would like to extend my JS syntax highlighting with highlight certain functions that will be commonly used in my program. I am using janus to keep all my plugins in order. Right now I have a file in ...
2
votes
1answer
26 views

Vim - custom syntax - how to match second word

I'm trying to make a custom syntax highlighting for Sybase T-SQL and I'm stuck when I try to match table name in the following line: UPDATE myTableName I've tried: syn match tsqlUpdateTableName ...
5
votes
1answer
148 views

vim syntax highlighting for git commit messages - custom commentchar

As mentioned in this answer, since Git 1.8.2 you can use core.commentchar config value to change commit message comments to something else than the default # (hashmark or hashsign). That is a ...
1
vote
1answer
48 views

Syntax highlight operators such as *,->

I'm using the spf-13 vim distribution on OS X (this problem is not specific to this distribution). I tried a few different color schemes (solarized, default, desert) and none of them highlight C ...
0
votes
1answer
54 views

Vim: dynamic syntax-highlighting

I want to dynamically (i.e., depending on the content of the current file) adapt syntax highlighting. While this might be useful in general, my specific setting is as follows: The kind of files I ...
2
votes
1answer
40 views

Vi - “pop” explanations for reserved words and functions

I'm in the process of learning a new programing language (Neuron), and it so happens that it has many language-specific reserved words. I was wondering if there is a way to configure Vi to emulate ...
1
vote
1answer
137 views

Vim syntax highlighting for R on Mac OS X Mountain Lion

I have tried downloading many R syntax highlighting plugins to no avail. None seem to work... However, when I drop sourthernlights.vim into ~/.vim/plugin this new color profile is in effect for all ...
0
votes
3answers
63 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 == ...
2
votes
2answers
33 views

Continue the last VIM syntax highlight until a new keyword appears?

I'm trying to write a custom syntax highlight for a log file. Each log line starts with a well-defined header, e.g.: TRACE: text text text DEBUG: text text text The TRACE and DEBUG lines will have ...
2
votes
2answers
55 views

Vim - guess programming language based on input?

Does anyone know of a way to get vim to guess the programming language of a new file based on your input and use the appropriate syntax highlighting? So far the syntax highlighting only works when it ...
0
votes
2answers
48 views

Different syntax highlighting on mvim/vim when using console

Using MVIM on GUI I get the syntax on the right. Using mvim -v\ or vim on the console, I get no syntax at all, but after a :syntax on if becomes the image on the left, which is still not the coloring ...
2
votes
1answer
59 views

Vim custom highlighting for lines starting with ;

I want to generate a custom highlighting rule for my template files *.tmpl, namely I would like to mark the lines that start with ; - those are comment lines. I have tried with something like this ...
5
votes
2answers
189 views

Detect filetype in vim without valid file extension

I'm looking for a way to determine the filetype of a file in vim and set the syntax highlighting based on the filetype. The only catch is I cannot use the file extension for determining the filetype. ...
16
votes
1answer
417 views

Vim context highlighting

I think standard highlighting is useful -- to some extent. When programming with callbacks and nested structures, this does not help. Keywords and strings, they appear everywhere, and it helps when ...
2
votes
2answers
189 views

Syntax highlighting randomly disappears during file saving

I'm using vim to edit some python files and recently it occurs sporadically that the syntax highlighting disappears after I save the buffer inside vim. I tried to reset syntax on and set ...
1
vote
1answer
58 views

Syntax Highlighting for .gitignore in Vim?

Does anyone know of one? Question in title.
2
votes
0answers
102 views

Wrong highlighting and indentation of Javascript micro templates in Vim

I use Javascript micro templates inside html and html.erb files in a Rails application. Unfortunately all html tags inside the script tag (with type="test/html" are not correctly highlighted, nor do I ...
0
votes
2answers
228 views

How to embed HTML string syntax in CoffeeScript using VIM?

I have looked at how to embed HTML syntax in JavaScript string from HTML syntax highlighting in javascript strings in vim. However, when I use CoffeeScript I cannot get the same thing working by ...
1
vote
0answers
96 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
71 views

Vim improperly highlights “very magic” and “very nomagic” regular expressions

I'm editing a .vim syntax file in vim itself, and I'm using "very magic" and "very nomagic" regexes, simply because I think they make more sense. Unfortunately, vim does not in any way highlight these ...
2
votes
1answer
58 views

Proper way to create a syntax file in vim that depends on another syntax file

I am currently creating a Vim syntax file for WordPress and have it inside a file called wordpress.vim All WordPress files are PHP files but not all PHP files are WordPress files. My wordpress.vim ...
0
votes
0answers
221 views

Undesirable suppression of error messages by Vim/Syntastic

I am using Qt5 with vim/syntastic after altering my .gvimrc to allow reading them from their original locations. The problem I have noticed is that in files where I include Qt libraries, all forms of ...
1
vote
1answer
79 views

How to highlight a command when syntax is already loaded in VIM?

How can I highlight all instances of one particular TeX command \foo after having loaded the default tex syntax scheme in VIM (v7.2)? I can do it easily if no syntax scheme is antecedently loaded: ...
3
votes
1answer
148 views

Vim regex fails matching square brackets on start of line

I'm writting a syntax file for Direct3D and I have a problem with the attributes: [unroll] for(int i = 0...) Here, "unroll" is an attribute. I'm using a regex to find some keywords inside square ...
1
vote
1answer
82 views

Embedded awk syntax highlighting in vim

I have a syntaxfile for highlighting awk embedded in bash script: syn include @AWKScript syntax/awk.vim syn region AWKScriptCode matchgroup=AWKCommand \ start=+[=\\]\@<!'+ skip=+\\'+ end=+'+ ...
1
vote
1answer
61 views

Vim syntax highlighting for continued comments until next keyword

I have code like this: # some comment comment This is a comment \ that continues. keyword option=3.123e4 Comments start with either "#" or "comment" and can continue with "\" and a line ...
1
vote
1answer
150 views

git-commit vim-like syntax highlighting in emacs

all. I've recently picked up emacs as a generally editor to replace gedit and vim. The one thing I miss terribly about vim is the git syntax highlighting. I have tried git-el, apparently with no ...
2
votes
1answer
140 views

Adding syntax highlighting for latex plugin in vim

I am using a package called outlines for LaTeX. It adds commands such as \1 \2 \3 etc. They are not highlighted by default in vim. So, I created a file called tex.vim in my .vimrc/syntax folder, and ...
6
votes
1answer
235 views

How do you get Vim to highlight C++ syntax errors like Visual Studio?

Is it possible to get gVim to highlight C++ syntax errors (the red squiggles underneath) in real-time like Visual studio?
1
vote
2answers
223 views

How do I get Vim to highlight YAML mapping key when it contains a space?

I'm using Vim 7.3 on Ubuntu linux. When I'm editing a YAML file This: fnordy fnord: fnord fnords: super fnord "fnords" would be colorized, but "fnordy fnords" would not be. How can I ...
7
votes
2answers
459 views

vim does not highlight some c++ keywords

I use vim (installed on cygwin) to write c++ programs but it does not highlight some c++ keywords such as new, delete, public, friend, try, but highlight others such as namespace, int, const, ...
3
votes
5answers
233 views

Utilizing emacs' or vim's syntax highlighter for command-line program?

I have a command-line program that spews JSON and YAML. By default it detects if pygments (pygmentize) is available and if it does, pass the output throught it to get a nice colorized output. However, ...
2
votes
2answers
102 views

Permanent syntax on switch for Vim over OS X Terminal

I use the terminal to vim into existing and new programs. I hate the fact that at all times I need to kick in :syntax on on the command line to make the syntax all colorful. Does anyone have a recipe ...
2
votes
1answer
265 views

Vim bracket and semicolon highliting

Sometimes vim highlights brackets or semicolon with red color. What plugin highlights it? Does it mean error in this place? Look on a picture please.
1
vote
1answer
62 views

Vim syntax highlighting breaking for prototypes.h file due to folds. Where are folds saved?

When I include the line: au BufWinEnter * silent! loadview "load folds Which resumes my saved folds, it breaks the syntax highlighting... but only in files named specifically "prototypes.h"... ...
0
votes
1answer
112 views

Vim highlight static variables

Is it possible to get Vim highlight in some manner, static variables in a Java source file? Script, configuration, anything? I've searched for a while and think it's not possible, please prove me ...
0
votes
1answer
73 views

vim's syntax highlighting doesn't like “set -e # comment”

My vi / vim syntax-highlighting doesn't recognise the comment after the line "set -e". If the comment contains an unpaired apostrophe this messes up the rest of the file's highlighting. What can I ...
2
votes
1answer
211 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 ...
4
votes
1answer
165 views

syntax highlighting between matching parenthesis

Say I hava a LaTeX document open in Vim, and I want to highlight every occurence of {\color{red} ... } (where the dots are supposed to symbolize some contents), that is, I want to have ...

1 2 3 4 5