I have been looking at the new Objective-J / Cappuccino javascript framework from 280North. 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?
|
2
|
|
|
|
|
|
The Objective-J Tools package (http://cappuccino.org/download) and the source on github now include a vim highlight module. |
|||
|
|
|
I've found just doing what is suggested here is not enough:
Problem 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. Add Objective-J to gvim menu To add a menu-item in gvim for Syntax->Ne-MO->Objective J:
add the following line.
save and quit
then reload a ".j" file in gvim. If you then go:
highlighting for your selected Objective-J file should occur. Objective-J auto-highlighting? But what about auto-highlighting when you load the file? There appears to be no file associations. So:
In the file you will find a list of filetype associations. If you want an idea where to add the line, search for "setf ocaml" in filetype.vim. Add the line below above (alphabetical):
Save the result. You should now be able to load a file with a ".j" extension and syntax highlighting for Objective-J files works. Result 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) |
||
|
|
|
|
If regular javascript syntax highlighting is good enough, you can map that to .j files by adding something like this to your .vimrc file:
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. |
||
|
|
