Anyone know of Objective-J syntax highlighting in vi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:13:25Z http://stackoverflow.com/feeds/question/49699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi 5 Anyone know of Objective-J syntax highlighting in vi? Brian Ramsay 2008-09-08T13:23:50Z 2009-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#49769 0 Answer by Claes Mogren for Anyone know of Objective-J syntax highlighting in vi? Claes Mogren 2008-09-08T14:07:10Z 2008-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#65731 4 Answer by Francisco Ryan Tolmasky I for Anyone know of Objective-J syntax highlighting in vi? Francisco Ryan Tolmasky I 2008-09-15T19:03:16Z 2008-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#613550 2 Answer by bootload for Anyone know of Objective-J syntax highlighting in vi? bootload 2009-03-05T04:18:43Z 2009-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 &amp;Syntax.Me-NO.Objective\ J :cal SetSyn("objj")&lt;CR&gt;</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>