How to make Xcode recognize a custom file extension as Objective-C for syntax highlighting?

Xcode determines how to represent a file in its user interface based on the file’s Uniform Type Identifier. As far as I know it’s not possible to add additional file extension tags to an existing UTI, but you can declare a new UTI that conforms to the type you want to map to. The system … Read more

How can I create a custom Eclipse Syntax Highlighter

Sounds like you are dealing with a DSL (Domain Specific Language). What you are looking for sounds exactly like XText. Here’s an extract from the page: Xtext is a framework/tool for development of external textual DSLs. Just describe your very own DSL using Xtext’s simple EBNF grammar language and the generator will create a parser, … Read more

Anyone found a PowerShell Syntax highlighting or IntelliSense plugin for Visual Studio? [closed]

Update 2013-08-20 Adam Driscoll has recently announced the PowerShell Tools for Visual Studio as successor of his former PowerGUI Visual Studio Extension – see his blog post about The Future of PowerGUI VSX for details, where he acknowledges the drawbacks of the predecessor outlined by Simon Gillbee (see previous update below) and describes how they … Read more