Free/open source code editor UI control for .Net [closed]

I’ve been using the SharpCode.TextEditor for a few cases, and it works quite well – including syntax highlighting and all. Check out this Using ICSharpCode.TextEditor article on CodeProject for an intro. To download it, go to the SharpDevelop web site and download the latest sources. One of the projects included is the Text editor, which … Read more

Highlighting the current line number in vim

There are two groups that determine highlighting of line displayed when &cursorline option is active: CursorLine and CursorLineNR. First is used to highlight the whole line, second for the line number. So to achieve what you want you must Clear the highlighting of CursorLine: just hi clear CursorLine after any :colorscheme and set background= call. … Read more

How do I embed source code or HTML in Open Office Org Presentations without using screenshots?

Some people says that copying code from Eclipse editor works well (UPDATE: Proven FALSE). Another alternative is exporting to RTF (can also export line numbers), or to clipboard, from Highlight and then opening/pasting it in OpenOffice.org. (UPDATE: Proven TRUE) Here is a Highlight GUI screen shot: You can also switch from OpenOffice.org to LibreOffice, and … Read more

How do I get “rainbow parentheses” in emacs?

This is an old question now, but I recently wrote RainbowDelimiters mode for this. It’s a ‘rainbow parens’-type mode which colors all parens, brackets and braces, made with Clojure programming in mind. It highlights the whole buffer, not just the parens surrounding point. The most important thing is that it’s FAST – all the other … Read more

Twig syntax highlighting sublime text

Documentation Syntax highlighting and auto-completion for Twig in Sublime Text 2is possible with : PHP-Twig.tmbundle TWIG Doc “IDEs Integration” : http://twig.sensiolabs.org/doc/templates.html#ides-integration Bundle’s Github : https://github.com/Anomareh/PHP-Twig.tmbundle Bundle’s Documentation : https://sublime.wbond.net/packages/PHP-Twig Download You can clone the project with : git clone https://github.com/Anomareh/PHP-Twig.tmbundle.git Or download it directly from the Github (last master version) : https://github.com/Anomareh/PHP-Twig.tmbundle/archive/master.zip Installation To install … Read more