User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:50:57Zhttp://stackoverflow.com/feeds/user/14125http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/660076/is-there-an-ide-out-there-that-does-structural-syntax-highlighting/669834#6698349Answer by jonb for Is there an IDE out there that does structural syntax highlighting?jonb2009-03-21T19:34:26Z2009-03-21T20:48:38Z<p>I'm the author of <a href="http://www.codekana.com" rel="nofollow">Codekana</a>. Indeed, what you describe above was the main goal for the product. BTW, I'm about to publish an article about the "making of" and the underlying technology, which is pretty nifty. It will probably be available next week (March 26, '09 or so). Recommended reading, if I may say so myself.</p>
<p>The reason Codekana only provides outlines, instead of a colored background, are limitations in VS's text rendering extensibility. I will hopefully be able to implement a solid-background version at some point in the future, although it will definitely require serious hacking and "rocket surgery".</p>
<p>I would have commented above, instead of providing another answer, but my reputation doesn't allow commenting. :(</p>
<p>[UPDATE: Thanks for the upvotes, now I can comment!]</p>
http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/94071#940710Answer by jonb for Do you have any recommended add-ons/plugins for Microsoft Visual Studio?jonb2008-09-18T16:17:16Z2008-09-18T16:17:16Z<p>If vi/vim editing is your thang:</p>
<p><a href="http://www.viemu.com" rel="nofollow">ViEmu for Visual Studio</a></p>
<p>If you want color-coded control-flow syntax-highlighting and graphical outlines:</p>
<p><a href="http://www.codekana.com" rel="nofollow">Codekana</a></p>
<p>I'm the developer of these commercial tools.</p>
http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/77806#778064Answer by jonb for Why are Vi and Emacs popular ?jonb2008-09-16T22:12:26Z2008-09-16T22:12:26Z<p>I don't know about emacs (I could guess, but someone more knowledgeable would be much better at this). But if we're talking about about vi/vim, I wrote an article some time ago which should clarify why this is so popular after 30 years of existence:</p>
<p><a href="http://www.viemu.com/a-why-vi-vim.html" rel="nofollow">"Why, oh why, do those nutheads use vi?"</a></p>
<p>I would in any case recommend any serious programmer to invest the time to master a powerful, multi-platform and predictably-long-lasting text editor. Currently vi and emacs are probably your best bets.</p>
http://stackoverflow.com/questions/1372046/plugin-for-vs-2008-with-structural-highlighting-support-syntax-delphi-prism/1403598#1403598Comment by on Plugin for VS 2008 - With Structural Highlighting - Support Syntax Delphi Prism2009-09-12T12:28:06Z2009-09-12T12:28:06ZJeroen, Codekana indeed does not have any refactoring support. Care to explain exactly what you mean by macros? Thanks!http://stackoverflow.com/questions/1372046/plugin-for-vs-2008-with-structural-highlighting-support-syntax-delphi-prismComment by on Plugin for VS 2008 - With Structural Highlighting - Support Syntax Delphi Prism2009-09-04T16:22:18Z2009-09-04T16:22:18ZJon the author & vendor of Codekana here. I'll definitely try to add support for other languages in the future, including Delphi-Prism. Shouldn't be too hard (but my to-do list is huge!).http://stackoverflow.com/questions/700186/text-editors-with-vim-mode/703249#703249Comment by on Text editors with "vim mode"?2009-04-01T21:27:42Z2009-04-01T21:27:42ZFull vim is <i>huge</i>. But still, incomplete but extensive support can be quite good. ViEmu supports a lot of stuff, and more every version. Disclaimer: I'm the author.http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/703823#703823Comment by on What is your "best friend" as a programmer?2009-04-01T11:22:20Z2009-04-01T11:22:20ZHave you seen <a href="http://www.viemu.com" rel="nofollow">viemu.com</a> ?http://stackoverflow.com/questions/660076/is-there-an-ide-out-there-that-does-structural-syntax-highlighting/669834#669834Comment by on Is there an IDE out there that does structural syntax highlighting?2009-03-22T00:05:25Z2009-03-22T00:05:25ZJosh: Thanks! Let me know if anything acts up, via the support form, I'll get back in touch via email. Or on Twitter, I recently joined (jonbho).http://stackoverflow.com/questions/660076/is-there-an-ide-out-there-that-does-structural-syntax-highlighting/660111#660111Comment by on Is there an IDE out there that does structural syntax highlighting?2009-03-22T00:03:43Z2009-03-22T00:03:43Zcms - no problem at all. glad it's fixed now!!http://stackoverflow.com/questions/660076/is-there-an-ide-out-there-that-does-structural-syntax-highlightingComment by on Is there an IDE out there that does structural syntax highlighting?2009-03-21T20:56:36Z2009-03-21T20:56:36ZDavy8 - My implementation of the concept (Codekana) doesn't look at indentation, it analyzes the syntax. It works just fine with most common indentation schemes people use, and with most weird but sensible ones too.http://stackoverflow.com/questions/660076/is-there-an-ide-out-there-that-does-structural-syntax-highlighting/660111#660111Comment by on Is there an IDE out there that does structural syntax highlighting?2009-03-21T20:53:29Z2009-03-21T20:53:29ZNB: It uses outlines instead of background coloring because of VS's limitations.
CMS: The correct name is "Codekana".
rmeadoe: A basic version of this is non-trivial. An advanced version is highly non-trivial.
Chris Nava: I implemented it for VS, doing it for Eclipse must be hell.