User jamesnvc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:04:35Zhttp://stackoverflow.com/feeds/user/7699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673554/how-can-i-refactor-c-source-code-using-emacs/706259#7062592Answer by jamesnvc for How can I refactor C++ source code using emacs?jamesnvc2009-04-01T16:05:36Z2009-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#7062272Answer by jamesnvc for Is Emacs useful compared to Eclipse programming Java?jamesnvc2009-04-01T15:59:53Z2009-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#3959610Answer by jamesnvc for How do you type lisp efficiently, with so many parentheses?jamesnvc2008-12-28T08:00:12Z2008-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#3835993Answer by jamesnvc for Which CSS editor do you use on Linux?jamesnvc2008-12-20T18:49:22Z2008-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#1727367Answer by jamesnvc for What's in your .emacs?jamesnvc2008-10-05T22:01:33Z2008-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#1727334Answer by jamesnvc for The single most useful Emacs featurejamesnvc2008-10-05T21:57:59Z2008-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-tagsComment by jamesnvc on RegEx match open tags except XHTML self-contained tagsjamesnvc2009-11-14T04:44:17Z2009-11-14T04:44:17ZBy 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.