User jamesnvc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T09:04:35Z http://stackoverflow.com/feeds/user/7699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673554/how-can-i-refactor-c-source-code-using-emacs/706259#706259 2 Answer by jamesnvc for How can I refactor C++ source code using emacs? jamesnvc 2009-04-01T16:05:36Z 2009-04-01T16:05:36Z <p>For somewhere in between refactoring tools and simple regex, since Emacs 22 you can embed arbitrary elisp expressions in your replacement text, which allows you to do incredibly powerful text manipulation. Steve Yegge wrote a <a href="http://steve-yegge.blogspot.com/2006/06/shiny-and-new-emacs-22.html" rel="nofollow">good article</a> on this a while ago.</p> http://stackoverflow.com/questions/689544/is-emacs-useful-compared-to-eclipse-programming-java/706227#706227 2 Answer by jamesnvc for Is Emacs useful compared to Eclipse programming Java? jamesnvc 2009-04-01T15:59:53Z 2009-04-01T15:59:53Z <p>Emacs can have pretty good IDE-like features (e.g. CEDET + JDEE), but its main advantage is that you can edit text really, really efficiently. If you're proficient enough with emacs, you will be able to spew out text fast enough that lack of whatever IDE feature(s) becomes negligible. </p> http://stackoverflow.com/questions/386854/how-do-you-type-lisp-efficiently-with-so-many-parentheses/395961#395961 0 Answer by jamesnvc for How do you type lisp efficiently, with so many parentheses? jamesnvc 2008-12-28T08:00:12Z 2008-12-28T08:00:12Z <p>I also changed my (dvorak) keyboard layout (via xmodmap) to switch the brackets ("[]") and parens, in conjunction with <code>paredit-mode</code> (which does indeed take some getting used to).</p> http://stackoverflow.com/questions/383584/which-css-editor-do-you-use-on-linux/383599#383599 3 Answer by jamesnvc for Which CSS editor do you use on Linux? jamesnvc 2008-12-20T18:49:22Z 2008-12-20T18:49:22Z <p>Emacs, via <code>css-mode</code>. It could be better, I suppose, but this gets the job done. Colourization, identation...one thing that is fairly helpful is that it recognizes which keywords are standard properites, so you can easilly tell if you've typoed for a selector or property. YMMV.</p> http://stackoverflow.com/questions/154097/whats-in-your-emacs/172736#172736 7 Answer by jamesnvc for What's in your .emacs? jamesnvc 2008-10-05T22:01:33Z 2008-10-05T22:01:33Z <p>One thing that can prove very useful: Before it gets too big, try to split it into multiple files for various tasks: My .emacs just sets my load-path and the loads a bunch of files - I've got all my mode-specific settings in <code>mode-configs.el</code>, keybindings in <code>keys.el</code>, et cetera</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/172733#172733 4 Answer by jamesnvc for The single most useful Emacs feature jamesnvc 2008-10-05T21:57:59Z 2008-10-05T21:57:59Z <p>Something that can be very useful at times, especially when renaming a bunch of files: In a Dired buffer, type "e" for wdired-change-to-wdired-mode, which allows you to edit the directory using any of your normal editing commads: regex-replace, rectangle commands, etc on file names!</p> <p>On a related note, the rectangle commands are also quite useful when you get used to them.</p> http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags Comment by jamesnvc on RegEx match open tags except XHTML self-contained tags jamesnvc 2009-11-14T04:44:17Z 2009-11-14T04:44:17Z By this point, I really think it should be axiomatic that, if you're trying to parse arbitrary XML/HTML, regular expressions are not the tool to use.