Anyone know of Objective-J syntax highlighting in vi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T16:13:25Zhttp://stackoverflow.com/feeds/question/49699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi5Anyone know of Objective-J syntax highlighting in vi?Brian Ramsay2008-09-08T13:23:50Z2009-03-05T04:18:43Z
<p>I have been looking at the new <a href="http://cappuccino.org/" rel="nofollow">Objective-J / Cappuccino</a> javascript framework from <a href="http://280north.com/" rel="nofollow">280North</a>. They provide plug-ins for SubEthaEdit and TextMate to handle syntax highlighting, but I primarily use vi. Does anyone know of a way to get Objective-J syntax highlighting in vi, or a good way to convert whatever format the other two editors use?</p>
http://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi/49769#497690Answer by Claes Mogren for Anyone know of Objective-J syntax highlighting in vi?Claes Mogren2008-09-08T14:07:10Z2008-09-08T14:07:10Z<p>If regular javascript syntax highlighting is good enough, you can map that to .j files by adding something like this to your .vimrc file:</p>
<pre><code> augroup objective-j
au! BufRead,BufNewFile *.j set filetype=objective-j
au! Syntax objective-j source /usr/share/vim/vim71/syntax/javascript.vim
augroup END
</code></pre>
<p>I haven't tried this exact code, but did something similar when mapping C# syntax to .vala files on my Linux machine. (NOTE: The javascript.vim file might be located somewhere else on your computer.) You could of course make a objective-j.vim file based on that javascript.vim syntax definition instead of using it as it is.</p>
http://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi/65731#657314Answer by Francisco Ryan Tolmasky I for Anyone know of Objective-J syntax highlighting in vi?Francisco Ryan Tolmasky I2008-09-15T19:03:16Z2008-09-15T19:27:11Z<p>The Objective-J Tools package (<a href="http://cappuccino.org/download" rel="nofollow">http://cappuccino.org/download</a>) and the source on github now include a vim highlight module.</p>
http://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi/613550#6135502Answer by bootload for Anyone know of Objective-J syntax highlighting in vi?bootload2009-03-05T04:18:43Z2009-03-05T04:18:43Z<blockquote>
<p>the source on github now include a vim
highlight module.</p>
</blockquote>
<p>I've found just doing what is suggested here is not enough:</p>
<ul>
<li><p>download the file as Francisco suggests</p></li>
<li><p>unzip, <code>cd Tools/</code> dir</p></li>
<li><p>run the shell, <code>sh install-tools</code></p></li>
<li><p>copy the objj.vim file to vim dir, <code>cp Tools/Editors/objj.vim /usr/share/vim/vim71/syntax/</code> </p></li>
</ul>
<p><strong>Problem</strong></p>
<p>I found no syntax highlighting worked for ".j" files. So the problem here is no file extension recognition. If you are using gvim as I am there is also no menu item. </p>
<p><strong>Add Objective-J to gvim menu</strong></p>
<p>To add a menu-item in gvim for Syntax->Ne-MO->Objective J: </p>
<ul>
<li><code>sudo vim /usr/share/vim/vim71/synmenu.vim</code></li>
</ul>
<p>add the following line.</p>
<ul>
<li><code>an 50.70.465 &Syntax.Me-NO.Objective\ J :cal SetSyn("objj")<CR></code> below the objective-C entry.</li>
</ul>
<p>save and quit</p>
<ul>
<li><code>:wq!</code> </li>
</ul>
<p>then reload a ".j" file in gvim. If you then go:</p>
<ul>
<li><em>Syntax->Ne-MO->Objective J</em></li>
</ul>
<p>highlighting for your selected Objective-J file should occur.</p>
<p><strong>Objective-J auto-highlighting?</strong></p>
<p>But what about auto-highlighting when you load the file? There appears to be no file associations. So:</p>
<ul>
<li><code>sudo vim /usr/share/vim/vim7.1/filetype.vim</code></li>
</ul>
<p>In the file you will find a list of filetype associations. If you want an idea where to add the line, search for "<em>setf ocaml</em>" in filetype.vim. Add the line below above (alphabetical):</p>
<ul>
<li><code>"" Objective J au BufNewFile,BufRead *.j setf objj</code></li>
</ul>
<p>Save the result. You should now be able to load a file with a ".j" extension and syntax highlighting for Objective-J files works. </p>
<p><strong>Result</strong></p>
<p>Now you should get automatic recognition of the Objective-J files by file type ".j" and a way to set this filetype in gvim. This probably should be added by Bram or whoever does the official release of vim but for the moment this hack works for me. (Ubuntu 8.10, Vim 7.1) </p>