User Trey Jackson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:46:29Z http://stackoverflow.com/feeds/user/6148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1910115/mumamo-alt-php-tags-mode-by-default/1910264#1910264 2 Answer by Trey Jackson for mumamo-alt-php-tags-mode by default Trey Jackson 2009-12-15T20:43:52Z 2009-12-15T21:21:34Z <p>Something like this:</p> <pre><code>(add-hook 'nxhtml-mumamo-mode-hook (lambda () (mumamo-alt-php-tags-mode 1))) </code></pre> <p>This will cause all buffers in <code>nxhtml-mumamo-mode</code> to also be in the <code>mumamo-alt-php-tags-mode</code>, if you want to restrict it to just <code>.html</code> and <code>.php</code> buffers, you'd add something a little more involved like this:</p> <pre><code>(add-hook 'nxhtml-mumamo-mode-hook 'enable-alt-tags-in-certain-files) (defun enable-alt-tags-in-certain-files () "enable mumamo-alt-php-tags-mode in .php and .html files" (when (string-match "\\.php$\\|\\.html\\$" (buffer-file-name)) (mumamo-alt-php-tags-mode 1))) </code></pre> http://stackoverflow.com/questions/1909593/how-do-i-get-my-cocoa-emacs-on-mac-os-x-to-load-my-emacs-visual-customizations-f/1909874#1909874 1 Answer by Trey Jackson for How do I get my cocoa emacs on Mac OS X to load my .emacs visual customizations for new windows (any document opened after the first)? Trey Jackson 2009-12-15T19:43:50Z 2009-12-15T20:37:43Z <p>For customizing the colors, you need to make the changes for the frames like so:</p> <pre><code>(setq default-frame-alist `((background-color . ,background) (foreground-color . "lightcyan") (border-color . "lightskyblue1") (cursor-color . "palegoldenrod") (mouse-color . "azure"))) </code></pre> <p>As far as spawning a new Emacs process when opening a document in Finder, to do that, you just need to disable your emacs server, and/or not use emacsclient. Just set it up so that emacs is called directly to open files. I don't know how to customize finder actions...</p> http://stackoverflow.com/questions/1893795/emacs-newbie-question-how-to-search-within-a-region/1893817#1893817 6 Answer by Trey Jackson for emacs newbie question - how to search within a region Trey Jackson 2009-12-12T15:52:45Z 2009-12-12T22:51:50Z <p>You can use this combination of commands:</p> <pre><code>M-x narrow-to-region C-s SOMETEXT M-x widen </code></pre> <p>Though, that's kind of burdensome, here's a new command that does the above for you automatically.</p> <pre><code>(defun isearch-forward-region-cleanup () "turn off variable, widen" (if isearch-forward-region (widen)) (setq isearch-forward-region nil)) (defvar isearch-forward-region nil "variable used to indicate we're in region search") (add-hook 'isearch-mode-end-hook 'isearch-forward-region-cleanup) (defun isearch-forward-region (&amp;optional regexp-p no-recursive-edit) "Do an isearch-forward, but narrow to region first." (interactive "P\np") (narrow-to-region (point) (mark)) (goto-char (point-min)) (setq isearch-forward-region t) (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit))) </code></pre> <p>Now just do <kbd>M-x isearch-forward-region RET SOMETEXT</kbd>, or bind it to a key binding of your preference like:</p> <pre><code>(global-set-key (kbd "C-S-s") 'isearch-forward-region) </code></pre> http://stackoverflow.com/questions/1878129/how-do-i-hide-number-of-links-in-dired/1878573#1878573 3 Answer by Trey Jackson for How do I hide number of links in dired? Trey Jackson 2009-12-10T04:09:14Z 2009-12-10T06:44:48Z <p>To control how things are displayed in dired, you can customize the variable <code>dired-listing-switches</code>. However, as you noted, not displaying the number of links is not an option.</p> <p>A slightly different approach would be to use the package <a href="http://www.emacswiki.org/emacs/DiredDetails" rel="nofollow"><code>dired-details</code></a>, which hides all details until you want them. This hides the number of links (but also hides other information). Follow the link to find the package (and a <a href="http://www.emacswiki.org/emacs/dired-details%2b.el" rel="nofollow"><code>dired-details+</code></a> which sounds like it fixes a couple minor inconveniences with <code>dired-details</code>).</p> <p>Original answer information follows:</p> <pre><code>(setq dired-listing-switches "-l") </code></pre> <p>From the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Dired-Enter.html" rel="nofollow">"Entering Dired"</a> info page:</p> <blockquote> <p>The variable <code>dired-listing-switches' specifies the options to give to </code>ls' for listing the directory; this string <em>must</em> contain <code>-l'. If you use a numeric prefix argument with the </code>dired' command, you can specify the <code>ls' switches with the minibuffer before you enter the directory specification. No matter how they are specified, the </code>ls' switches can include short options (that is, single characters) requiring no arguments, and long options (starting with <code>--') whose arguments are specified with </code>='.</p> </blockquote> http://stackoverflow.com/questions/1824256/setting-different-c-basic-offs-for-different-projects/1824328#1824328 6 Answer by Trey Jackson for Setting different c-basic-offs for different projects Trey Jackson 2009-12-01T06:21:17Z 2009-12-10T00:06:57Z <p>Create a file in the directory you want to customize named <code>.dir-locals.el</code>, and edit it to contain:</p> <pre><code>((c-mode . ((c-basic-offset . 4)))) </code></pre> <p><em>Note:</em> This is new functionality in Emacs 23.1.</p> <p>This takes advantage of the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Directory-Variables.html" rel="nofollow">Per-Directory Local Variables</a>. From the documentation in the link:</p> <blockquote> <p>The <code>.dir-locals.el</code> file should hold a specially-constructed list. This list maps Emacs mode names (symbols) to alists; each alist specifies values for variables to use when the respective mode is turned on. The special mode name `nil' means that its alist applies to any mode. Instead of a mode name, you can specify a string that is a name of a subdirectory of the project's directory; then the corresponding alist applies to all the files in that subdirectory.</p> <p>Here's an example of a <code>.dir-locals.el</code> file:</p> <pre><code> ((nil . ((indent-tabs-mode . t) (tab-width . 4) (fill-column . 80))) (c-mode . ((c-file-style . "BSD"))) (java-mode . ((c-file-style . "BSD"))) ("src/imported" . ((nil . ((change-log-default-name . "ChangeLog.local")))))) </code></pre> </blockquote> http://stackoverflow.com/questions/1877103/how-can-i-get-more-colors-in-emacs-vc-diff/1877253#1877253 3 Answer by Trey Jackson for How can I get more colors in emacs vc-diff? Trey Jackson 2009-12-09T22:06:33Z 2009-12-09T22:06:33Z <p>The package <a href="http://www.emacswiki.org/emacs/diff-mode-.el" rel="nofollow"><code>diff-mode-.el</code></a> provides more colors.</p> <p>You can customize the colors by either <a href="http://www.emacswiki.org/emacs/CustomizingFaces" rel="nofollow">customizing the faces</a> <code>diff-indicator-removed</code> and <code>diff-indicator-added</code>, or changing the variables <code>diff-indicator-removed-face</code> and <code>diff-indicator-added-face</code> to be faces whose colors/properties you like. There are also <code>changed</code> varieties of the face and variable.</p> <p>Other packages for enhancing <code>diff-mode</code> can be found <a href="http://www.emacswiki.org/emacs/DiffEnhancements" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1875646/how-do-i-change-where-my-scratch-buffer-is-saved/1875823#1875823 3 Answer by Trey Jackson for How do I change where my scratch buffer is saved? Trey Jackson 2009-12-09T18:25:44Z 2009-12-09T18:25:44Z <p>Adding this to your <code>.emacs</code> file should do the trick. Obviously customize the file for the scratch buffer.</p> <pre><code>(defvar scratch-buffer-file-name "~/sktch.el" "file name for *scratch* buffer") (defun synch-scratch-with-file () "replace *scratch* buffer with the file scratch-buffer-file-name" (save-window-excursion (find-file scratch-buffer-file-name) (kill-buffer "*scratch*") (rename-buffer "*scratch*") (lisp-interaction-mode))) (synch-scratch-with-file) </code></pre> http://stackoverflow.com/questions/1855890/viper-mode-in-all-modes/1855952#1855952 1 Answer by Trey Jackson for Viper mode in all modes Trey Jackson 2009-12-06T17:29:30Z 2009-12-08T15:12:48Z <p>The error is because you neglected to quote the variable <code>viper-vi-state-mode-list</code> like so:</p> <pre><code>(add-to-list 'viper-vi-state-mode-list 'help-mode) </code></pre> <p>See <a href="http://stackoverflow.com/questions/1780838/difference-between-symbol-and-variable-name-in-emacs-lisp">this question</a> as to why you need to quote <code>'viper-vi-state-mode-list</code>.</p> <p>But, that didn't solve the problem for me, this is how I got <kbd>C-w C-w</kbd> to work the way you want:</p> <pre><code>(define-key help-mode-map (kbd "C-w C-w") 'vimpulse-cycle-windows) </code></pre> http://stackoverflow.com/questions/1864662/rebinding-c-c-to-c-c/1864982#1864982 2 Answer by Trey Jackson for Rebinding C-c to C-c Trey Jackson 2009-12-08T06:23:44Z 2009-12-08T06:23:44Z <p>The original binding for <kbd>C-c</kbd> can be set with the following:</p> <pre><code>(define-key viper-vi-global-user-map (kbd "C-c") 'mode-specific-command-prefix) </code></pre> <p>The info page for this is <a href="http://www.gnu.org/s/emacs/manual/html%5Fnode/elisp/Prefix-Keys.html" rel="nofollow">Prefix Keys</a>.</p> http://stackoverflow.com/questions/1854214/how-do-i-keep-emacs-org-mode-from-splitting-windows/1856069#1856069 2 Answer by Trey Jackson for How do I keep Emacs org-mode from splitting windows? Trey Jackson 2009-12-06T18:01:39Z 2009-12-06T18:01:39Z <p>One option is to tell Emacs to never split windows, which can be done like so:</p> <pre><code>(setq same-window-regexps '(".")) </code></pre> <p>This will keep your window from splitting, and then you use your regular commands to switch buffers to get back to what you were looking at.</p> <p>This is as opposed to what it sounds like you were asking for, which was new <em>frames</em>, which IMO doesn't really help if you have limited screen real estate because you're now having to switch frames (graphical windows).</p> http://stackoverflow.com/questions/1852844/emacs-lisp-difference-between-function-lambda-and-lambda/1853970#1853970 6 Answer by Trey Jackson for Emacs Lisp: difference between (function (lambda ...)) and (lambda ...)? Trey Jackson 2009-12-06T00:06:28Z 2009-12-06T00:31:42Z <p>They are pretty interchangeable. The answer is that <code>function</code> <em>enables</em> the lambda to be byte compiled, whereas the other two do not (and are equivalent). <em>Note:</em> this does not mean that <code>function</code> actually byte compile the lambda.</p> <p>How might one figure that out? A little Emacs lisp introspection provides some clues. To start: <kbd>C-h f function RET</kbd>:</p> <blockquote> <p>function is a special form in 'C source code'.</p> <p>(function arg)</p> <p>Like 'quote', but preferred for objects which are functions. In byte compilation, 'function' causes its argument to be compiled. 'quote' cannot do that.</p> </blockquote> <p>Ok, so that's the difference between <code>(function (lambda ...))</code> and <code>'(lambda ...)</code>, the first tells the byte compiler that it may safely compile the expression. Whereas the <kbd>'</kbd>ed expressions may not necessarily be compiled (for they might just be a list of numbers.</p> <p>What about just the bare <code>(lambda ...)</code>? <kbd>C-h f lambda RET</kbd> shows:</p> <blockquote> <p>lambda is a Lisp macro in `subr.el'.</p> <p>(lambda args [docstring] [interactive] body)</p> <p>Return a lambda expression. A call of the form (lambda args docstring interactive body) is self-quoting; the result of evaluating the lambda expression is the expression itself. The lambda expression may then be treated as a function, i.e., stored as the function value of a symbol, passed to 'funcall' or 'mapcar', etc.</p> </blockquote> <p>Therefore, <code>(lambda ...)</code> and <code>'(lambda ...)</code> are equivalent.</p> <p>Also, there is the notation <code>#'(lambda ...)</code>, which is syntactic sugar for <code>(function (lambda ...))</code>.</p> <p>For more information on functions in Emacs lisp, read the <a href="http://www.gnu.org/software/emacs/elisp/html%5Fnode/Functions.html#Functions" rel="nofollow">Functions info pages</a>.</p> <p>Just to check all this, you can type the following into the *scratch* buffer and evaluate the expressions:</p> <pre><code>(caddr '(lambda (x) (+ x x))) (+ x x) (caddr (lambda (x) (+ x x))) (+ x x) (caddr (function (lambda (x) (+ x x)))) (+ x x) (equal '(lambda (x) (+ x x)) (function (lambda (x) (+ x x)))) t (equal '(lambda (x) (+ x x)) (lambda (x) (+ x x))) t </code></pre> <p>So, all three variants of using lambda just build up lists that may be used as functions (one of which may be byte compiled).</p> http://stackoverflow.com/questions/1604597/emacs-using-select-all-in-function-how-to-find-the-function-bound-to-a-key/1604626#1604626 6 Answer by Trey Jackson for Emacs - Using "Select All" in Function (how to find the function bound to a key) Trey Jackson 2009-10-22T01:47:59Z 2009-12-04T19:59:45Z <p>To find what Emacs will do when you invoke a certain key combination, prefix that with: <kbd>C-h k</kbd>. In your case, you'd type:</p> <pre><code>C-h k C-x h </code></pre> <p>which yields</p> <blockquote> <p>C-x h runs the command mark-whole-buffer, which is an interactive compiled Lisp function in `simple.el'.</p> <p>It is bound to C-x h, . (mark-whole-buffer)</p> <p>Put point at beginning and mark at end of buffer. You probably should not use this function in Lisp programs; it is usually a mistake for a Lisp function to use any subroutine that uses or sets the mark.</p> </blockquote> <p><em>Note:</em> You can also use <kbd>C-h K</kbd> (note the <kbd>K</kbd> is capitalized), which will jump you to the documentation for the command.</p> http://stackoverflow.com/questions/1351852/debug-elisp-major-mode/1352704#1352704 4 Answer by Trey Jackson for debug elisp major mode Trey Jackson 2009-08-30T00:20:19Z 2009-12-04T19:54:00Z <p>The manual for debugging elisp can be <a href="http://www.gnu.org/software/emacs/emacs-lisp-intro/html%5Fnode/Debugging.html#Debugging" rel="nofollow">found here</a>.</p> <p>You can used <code>edebug</code> as mentioned, there's also <kbd>M-x debug-on-entry</kbd> and you can set <code>(setq debug-on-quit t)</code>. Check out all the options in the link, it all depends on how you want to skin the cat.</p> http://stackoverflow.com/questions/1645735/highlighting-quoted-backquoted-parens/1719243#1719243 1 Answer by Trey Jackson for Highlighting quoted/backquoted parens Trey Jackson 2009-11-12T01:15:25Z 2009-12-04T19:44:36Z <p>You can apply the following patch to <a href="http://www.emacswiki.org/emacs/download/mic-paren.el" rel="nofollow">mic-paren</a> (follow link for latest version, 3.8) to get what you want. Customize the newly created face <code>paren-face-quoted-match</code> which is glaringly set up to have a green foreground and orange background for testing purposes.</p> <p>Now when you're next to a matched set of parenthesis preceded by a single open quote <kbd>`</kbd>, you'll get the quoted face.</p> <p>Here's a picture of it in action: <img src="http://img262.imageshack.us/img262/8866/quoted.png" alt="alt text"></p> <pre><code>--- orig-mic-paren.el 2009-11-11 17:02:42.000000000 -0800 +++ mic-paren.el 2009-11-11 17:05:35.306263000 -0800 @@ -561,4 +561,16 @@ :group 'mic-paren-matching) +(defface paren-face-quoted-match + '((((class color)) (:foreground "green" :background "orange")) + (t (:reverse-video t))) + "" + :group 'faces + :group 'mic-paren-matching) + +(defcustom paren-quoted-match-face 'paren-face-quoted-match + "Mic-paren face used for a quoted paren" + :type 'face + :group 'mic-paren-matching) + ;;; End of User Options ;;; ====================================================================== @@ -1052,5 +1064,9 @@ face (if mismatch paren-mismatch-face - paren-match-face) + (save-excursion + (if (progn (goto-char (- (min (point) opos) 1)) + (looking-at "`")) + paren-quoted-match-face + paren-match-face))) visible (when (pos-visible-in-window-p opos) (save-excursion </code></pre> <p>To apply the patch, cut/paste the patch chunk to a file named mic.patch, and run the following:</p> <pre><code>patch mic-paren.el mic.patch </code></pre> http://stackoverflow.com/questions/1276080/how-can-i-do-viper-search-incrementally-using-and-in-emacs/1278706#1278706 0 Answer by Trey Jackson for How can I do viper search incrementally using / and ? in emacs ? Trey Jackson 2009-08-14T16:02:27Z 2009-12-04T19:39:05Z <p>Well, the straight forward answer seems to be:</p> <pre><code>(define-key viper-vi-global-user-map (kbd "/") 'viper-isearch-forward) </code></pre> <p>Note: as a non viper user, I don't know if that defines <kbd>/</kbd> where you were expecting it to be. Before this setting, <kbd>/</kbd> was bound to <code>'viper-exec-mapped-kbd-macro</code> - so that's what was replaced.</p> <p>This answer seems too simple to be what you'd expect, as it takes about as long to type in as the message in the TODO section took.</p> http://stackoverflow.com/questions/1836925/emacs-find-name-dired-how-to-change-default-directory/1836975#1836975 3 Answer by Trey Jackson for emacs - find-name-dired - how to change default directory Trey Jackson 2009-12-03T00:56:42Z 2009-12-03T06:18:29Z <p>To get a different starting directory, you can advise the function to read the arguments using a different starting directory like so:</p> <pre><code>(defadvice find-name-dired (before find-name-dired-with-default-directory activate) "change the argument reading" (interactive (let ((default-directory "/some/path")) (call-interactively 'get-args-for-my-find-name-dired)))) (defun get-args-for-my-find-name-dired (dir pattern) (interactive "DFind-name (directory): \nsFind-name (filename wildcard): ") (list dir pattern)) </code></pre> <p>And then you just call <kbd>my-find-name-dired</kbd>.</p> <p>Regarding case insensitivity, you can customize the variable <code>find-name-arg</code> to be the case insensitive version:</p> <pre><code>(setq find-name-arg "-iname") </code></pre> http://stackoverflow.com/questions/626492/emacs-highlight-buffer-modifications/626653#626653 12 Answer by Trey Jackson for Emacs - Highlight buffer modifications Trey Jackson 2009-03-09T15:19:45Z 2009-12-02T04:22:24Z <p>As of Emacs 22.1 (at least), <code>'save-buffers-kill-emacs</code> (the default binding for <kbd>C-x C-c</kbd>) prompts you for each unsaved buffer that has a file. Type a <kbd>d</kbd> when prompted to save and see the diff.</p> <p>From the help documentation:</p> <pre><code>Save some modified file-visiting buffers. Asks user about each one. You can answer `y' to save, `n' not to save, `C-r' to look at the buffer in question with `view-buffer' before deciding or `d' to view the differences using `diff-buffer-with-file'. </code></pre> <p>If you look at the prompt, it should say something like:</p> <pre><code>Save file /path/to/file.txt? (y, n, !, ., q, C-r, d, or C-h) </code></pre> <p>Typing <kbd>C-h</kbd> gives you a little more verbose description (but <kbd>d</kbd> is what you are asking for):</p> <pre><code>Type SPC or `y' to save the current buffer; DEL or `n' to skip the current buffer; RET or `q' to give up on the save (skip all remaining buffers); C-g to quit (cancel the whole command); ! to save all remaining buffers; C-r to view this buffer; d to view changes in this buffer; or . (period) to save the current buffer and exit. </code></pre> http://stackoverflow.com/questions/1815490/how-to-get-emacs-tempo-mode-working-with-abbrevs-for-c-c/1815852#1815852 1 Answer by Trey Jackson for How to get emacs tempo mode working with abbrevs for C/C++? Trey Jackson 2009-11-29T15:46:44Z 2009-11-29T15:46:44Z <p>An alternative to <code>tempo</code> is <a href="http://www.emacswiki.org/emacs/Yasnippet" rel="nofollow"><code>yasnippet</code></a>, which I found to be easier to set up interesting expansions.</p> http://stackoverflow.com/questions/1799191/how-can-i-fix-csharp-mode-el/1800737#1800737 2 Answer by Trey Jackson for How can I fix csharp-mode.el ? Trey Jackson 2009-11-25T23:44:55Z 2009-11-25T23:44:55Z <p>This snippet of advice appears to fixes the first half of the indentation problem #1. I'm hoping it won't cause problems elsewhere. It just looks for the condition that is causing the bad indentation (syntax <code>statement-cont</code> and <code>#if</code> or <code>#endif</code> (well, just <code>#</code>)) at the beginning of that) and returns the syntax deduced from <em>before</em> that point. Looks good to me, but I'm not the judge here.</p> <pre><code>(defvar csharp-mode-syntax-table-no-special-slash (let ((res (copy-syntax-table csharp-mode-syntax-table))) (modify-syntax-entry ?\\ "w" res) res) "same as regular csharp-mode-syntax-table, only \\ is not an escape char") (defadvice c-guess-basic-syntax (after c-guess-basic-syntax-csharp-hack activate) "following an #if/#endif, indentation gets screwey, fix it" (let ((res ad-return-value)) (save-excursion (save-match-data (cond ((and (eq major-mode 'csharp-mode) (eq 'statement-cont (caar res)) (progn (goto-char (cadar res)) (looking-at "#"))) ;; when following a #if, try for a redo (goto-char (cadar res)) (setq ad-return-value (c-guess-basic-syntax))) ((and (eq major-mode 'csharp-mode) (eq 'string (caar res))) ;; inside a string ;; check to see if it is a literal ;; and if so, redo with modified syntax table (let ((p (point)) (extent (c-literal-limits))) (when extent (goto-char (- (car extent) 1)) (when (looking-at "@\"") ;; yup, a string literal (with-syntax-table csharp-mode-syntax-table-no-special-slash (goto-char p) (setq ad-return-value (c-guess-basic-syntax)))))))))))) </code></pre> <p>The close curly brace is still indented improperly. I think folks who maintain the indentation code would know how to make changes. It's beyond the scope of my understanding. There are 104 different "cases" of indentation managed by the cc-engine...</p> <p>(Same with indentation for Problems 2 &amp; 3, they all are deemed to be a part of 'statement-cont syntax). To see the what the cc-engine thinks the syntax under the current point is, do: <kbd>C-c C-s</kbd>.</p> <p>And regarding Problem 4, the literal string, the above seems to properly <em>indent</em> the literal string, but fontification is still broken.</p> http://stackoverflow.com/questions/1792326/how-do-i-bind-a-command-to-c-i-without-changing-tab/1792482#1792482 10 Answer by Trey Jackson for How do I bind a command to C-i without changing TAB? Trey Jackson 2009-11-24T19:47:56Z 2009-11-24T21:58:47Z <p>In short, this should solve the problem for you:</p> <pre><code>(setq local-function-key-map (delq '(kp-tab . [9]) local-function-key-map)) (global-set-key (kbd "C-i") 'forward-word) </code></pre> <p>Longer version:</p> <p>From the emacs lisp documentation on [function keys][1]:</p> <blockquote> <p>In ASCII, C-i and are the same character. If the terminal can distinguish between them, Emacs conveys the distinction to Lisp programs by representing the former as the integer 9, and the latter as the symbol tab.</p> <p>Most of the time, it's not useful to distinguish the two. So normally local-function-key-map (see Translation Keymaps) is set up to map tab into 9. Thus, a key binding for character code 9 (the character C-i) also applies to tab. Likewise for the other symbols in this group. The function read-char likewise converts these events into characters.</p> </blockquote> <p>So, once you do the following, you can see the difference in the key bindings:</p> <pre><code>(setq local-function-key-map (delq '(kp-tab . [9]) local-function-key-map)) ;; this is C-i (global-set-key (kbd "C-i") (lambda () (interactive) (message "C-i"))) ;; this is &lt;tab&gt; key (global-set-key (kbd "&lt;tab&gt;") (lambda () (interactive) (message "&lt;tab&gt;"))) </code></pre> <p>Note, each mode sets up the various <kbd>TAB</kbd> bindings differently, so you may need to do customization per mode that you care about.</p> <p><strong>Version Dependency</strong>:</p> <p>The above works for Emacs 23.1. From the NEWS file:</p> <blockquote> <p>Function key sequences are now mapped using `local-function-key-map', a new variable. This inherits from the global variable function-key-map, which is not used directly any more.</p> </blockquote> <p>Which means, in versions 22 and earlier, you can get the same effect by using the variable <code>function-key-map</code>. I tested this and found it to work with Emacs 21.</p> <pre><code>(setq local-function-key-map (delq '(kp-tab . [9]) function-key-map)) (global-set-key (kbd "C-i") 'forward-word) </code></pre> http://stackoverflow.com/questions/1789064/trying-to-get-a-terminal-to-work-in-emacs/1790863#1790863 0 Answer by Trey Jackson for Trying to get a terminal to work in Emacs... Trey Jackson 2009-11-24T15:39:33Z 2009-11-24T15:39:33Z <p>Have you tried launching Emacs from a Cygwin shell, and then using Emacs as normal?</p> http://stackoverflow.com/questions/1780838/difference-between-symbol-and-variable-name-in-emacs-lisp/1780984#1780984 12 Answer by Trey Jackson for Difference between symbol and variable name in emacs lisp Trey Jackson 2009-11-23T03:37:25Z 2009-11-23T17:58:25Z <p>The apostrophe is a quote, which tells the interpreter to not parse the following expression (the symbol name). Thus, <code>'add-to-list</code> gets the symbol which contains the list value that is intended to be evaluated. </p> <p>To learn more about symbols, read the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Symbols.html#Symbols" rel="nofollow">Symbol</a> documentation (specifically, <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Symbol-Components.html#Symbol-Components" rel="nofollow">Symbol Components</a> symbols have names, values, function definitions and property lists).</p> <p>Without reading the documentation, this is how I explain it: Emacs lisp's <a href="http://en.wikipedia.org/wiki/Evaluation%5Fstrategy" rel="nofollow">evaluation strategy</a> is to pass by value (as opposed to by name or reference or something else). If the quote were not there, <code>flymake-allowed-file-name-masks</code> would be evaluated to a value, and <code>add-to-list</code> would have to work directly on the list. This would work, with the following exceptions. If the list were empty, there would be no way to change what the original variable pointed to. For the same reason, you would not be able to add elements to the front of the list.</p> <p>To make those two cases work, you actually need the variable name so that you can modify what <em>it</em> points to.</p> <p>It'd probably be useful to read the following: <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Intro-Eval.html#Intro-Eval" rel="nofollow">Introduction to Evaluation</a>, <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/List-Variables.html#List-Variables" rel="nofollow">Modifying List Variables</a>, and <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Modifying-Lists.html#Modifying-Lists" rel="nofollow">Modifying Existing List Structures</a>.</p> <p>If you're familiar with <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Box-Diagrams.html#Box-Diagrams" rel="nofollow">box diagrams</a>, perhaps this will help.</p> <p>Imagine that <code>some-var</code> points to a list:</p> <pre><code>somevar | | v --- --- --- --- --- --- | | |--&gt; | | |--&gt; | | |--&gt; nil --- --- --- --- --- --- | | | | | | --&gt; rose --&gt; violet --&gt; buttercup </code></pre> <p>And you wanted to put something on the front of that list.</p> <p>If all you have to work with is the <em>value</em> of the pointer in <code>somevar</code>, then the best you can do is put a new element on the front of the list, but you cannot actually modify what <code>somevar</code> points to (because you don't have <code>somevar</code>, you have it's <em>value</em>). Like so:</p> <pre><code> somevar | | v --- --- --- --- --- --- --- --- | | |--&gt; | | |--&gt; | | |--&gt; | | |--&gt; nil --- --- --- --- --- --- --- --- | | | | | | | | --&gt; tulip --&gt; rose --&gt; violet --&gt; buttercup </code></pre> <p>So, to write your own <code>'add-to-list</code> function, you need the variable name.</p> <p>Of course, if you wrote <code>'add-to-list</code> as a <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Macros.html#Macros" rel="nofollow">macro</a>, you wouldn't have that restriction.</p> http://stackoverflow.com/questions/1775898/emacs-disable-line-truncation-in-minibuffer-only/1776248#1776248 4 Answer by Trey Jackson for Emacs: Disable line truncation in minibuffer only Trey Jackson 2009-11-21T18:10:52Z 2009-11-21T18:10:52Z <p>You just need to set the <code>truncate-lines</code> variable to nil for the <em>minibuffer</em>. The easiest way to do that is with the following:</p> <pre><code>(add-hook 'minibuffer-setup-hook (lambda () (setq truncate-lines nil))) </code></pre> http://stackoverflow.com/questions/1760939/how-to-write-an-emacs-function-to-wrap-the-marked-region-with-specified-text/1761310#1761310 5 Answer by Trey Jackson for How to write an Emacs function to wrap the marked region with specified text Trey Jackson 2009-11-19T06:38:43Z 2009-11-20T18:41:12Z <p>For your case, this should work:</p> <pre><code>(defun wrap-text (b e txt) "simple wrapper" (interactive "r\nMEnter text to wrap with: ") (save-restriction (narrow-to-region b e) (goto-char (point-min)) (insert txt) (insert "(") (goto-char (point-max)) (insert ")"))) (global-set-key (kbd "C-x M-w") 'wrap-text) </code></pre> http://stackoverflow.com/questions/1760859/suppress-additional-braces-in-emacs-electric-mode/1764592#1764592 1 Answer by Trey Jackson for suppress additional braces in emacs electric mode Trey Jackson 2009-11-19T16:26:58Z 2009-11-19T16:26:58Z <p>It sounds like what you want is for the <kbd>}</kbd> to either jump to the (already inserted) <kbd>}</kbd>, or to simply insert a <kbd>}</kbd> and delete the <kbd>}</kbd> that was inserted earlier by the electric mode.</p> <p>This code should do what you want, the choice of what to do on <kbd>}</kbd> is toggled by the variable <code>my-ruby-close-brace-goto-close</code>.</p> <pre><code>;; assuming ;; (require 'ruby) ;; (require 'ruby-electric) (defvar my-ruby-close-brace-goto-close t "Non-nill indicates to move point to the next }, otherwise insert } and delete the following }.") (defun my-ruby-close-brace () "replacement for ruby-electric-brace for the close brace" (interactive) (let ((p (point))) (if my-ruby-close-brace-goto-close (unless (search-forward "}" nil t) (message "No close brace found") (insert "}")) (insert "}") (save-excursion (if (search-forward "}" nil t) (delete-char -1)))))) (define-key ruby-mode-map "}" 'my-ruby-close-brace) </code></pre> http://stackoverflow.com/questions/1755785/emacs23-php-mode-problem/1757888#1757888 0 Answer by Trey Jackson for Emacs23 php-mode problem Trey Jackson 2009-11-18T17:58:00Z 2009-11-18T17:58:00Z <p>The problem is that something is trying to call the undefined function <code>'php-template-if-hook</code>.</p> <p>It'd be useful if you provided a link to where you found the <code>php-mode.el</code> you are using, because there seem to be <a href="http://www.emacswiki.org/emacs/PhpMode" rel="nofollow">several</a>.</p> <p>The symbol <code>'php-template-if-hook</code> is not a part of the <a href="http://sourceforge.net/projects/php-mode/files/" rel="nofollow"><code>php-mode.el</code></a> on sourceforge, so you either have a different version, or there's something else in your .emacs that's causing the problem. It looks as though something is triggering an abbrev insertion that leads to '<code>php-template-if-hook</code>. <em>Note:</em> <a href="http://stackoverflow.com/search?q=%5Bemacs%5D+php-mode">it looks like</a> people on stack overflow are using the php-mode from sourceforge, so I'd recommend moving to that one.</p> <p>A quick google search finds this <a href="http://hexe19.net/wp/wp-content/uploads/2008/03/php-mode.el-02" rel="nofollow"><code>php-mode.el</code></a>, which defined <code>'php-template-if-hook</code> to be:</p> <pre><code>(defun php-template-if () "Insert an if statement." (interactive) (let ((start (point))) (insert "if ") (insert "(") ; + (when (php-template-field "condition" nil t start (point)) (insert ") {") ; + (newline-and-indent) (setq start (point-marker)) (insert "\n}") (php-indent-line-2) (goto-char start)))) </code></pre> <p>But, solving your problem by cutting/pasting random code from the intertubes is not a good long-term solution.</p> http://stackoverflow.com/questions/1731634/dont-show-uninteresting-files-in-emacs-completion-window/1732081#1732081 7 Answer by Trey Jackson for Don't show uninteresting files in Emacs completion window Trey Jackson 2009-11-13T21:36:49Z 2009-11-16T18:20:50Z <p>This piece of advice filters out files with extensions listed in <code>'completion-ignored-extensions</code>:</p> <pre><code>(defadvice completion--file-name-table (after ignoring-backups-f-n-completion activate) "filter out results when the have completion-ignored-extensions" (let ((res ad-return-value)) (if (and (listp res) (stringp (car res)) (cdr res)) ; length &gt; 1, don't ignore sole match (setq ad-return-value (completion-pcm--filename-try-filter res))))) </code></pre> <p><em>Note:</em> This doesn't affect <code>dired</code>.</p> <p>For the <code>dired</code> issue, add this to your .emacs</p> <pre><code>(eval-after-load "dired" '(require 'dired-x)) (add-hook 'dired-mode-hook (lambda () (dired-omit-mode 1))) </code></pre> <p>Read the <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/dired-x/index.html#Top" rel="nofollow">documentation for dired-x</a> to get an idea of what's available there.</p> http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr/1736956#1736956 6 Answer by Trey Jackson for Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? Trey Jackson 2009-11-15T08:07:31Z 2009-11-15T23:21:15Z <p>Emacs/Vim can be used for <em>any</em> sized projects.</p> <p>Generally, you won't get to choose the environment, the job you find will have one already picked out for you (unless it's non-Java programming in Unix, in which case use what you want).</p> <p>I wouldn't sweat the choice, just learn to use which ever editor/IDE is available to its utmost extent.</p> <p>I use (and have used) Emacs for personal projects, and in two different companies on software projects exceeding 10M lines of production code each.</p> http://stackoverflow.com/questions/1734481/emacs-c-and-c/1734500#1734500 3 Answer by Trey Jackson for emacs C and C++ Trey Jackson 2009-11-14T15:09:45Z 2009-11-14T15:09:45Z <ol> <li><kbd>M-x compile</kbd> (see <a href="http://stackoverflow.com/questions/999871/compilation-in-emacs">this SO question</a>)</li> <li><kbd>M-/</kbd> (see <a href="http://stackoverflow.com/questions/1644490/emacs-completions-or-intellisense-the-same-as-on-visual-studio">this SO question</a>, which is exactly the same)</li> <li>The same way you would w/out using Emacs</li> </ol> http://stackoverflow.com/questions/1033820/matrix-like-idle-animation-for-emacs/1033862#1033862 10 Answer by Trey Jackson for Matrix-like Idle Animation for Emacs Trey Jackson 2009-06-23T16:59:04Z 2009-11-13T22:37:39Z <p>You might want to check out the package zone: <kbd>M-x zone</kbd></p> <p>The <code>'zone-pgm-drip</code> is like the Matrix drip, only one character at a time. I'm sure it could be enhanced to be more flood like. Also, the <code>'zone-pgm-jitter</code> has text flooding down, but it's just the text currently on the screen (so it's horizontal extent is limited to what was already showing). You can just run <kbd>M-x zone</kbd> over and over until you find what you like.</p> <p>If you want to limit the choices zone uses, you can restrict the array that zone uses:</p> <pre><code>(setq zone-programs [zone-pgm-jitter]) </code></pre> <p>The choices for <code>zone-programs</code> are:</p> <pre><code>zone-pgm-jitter zone-pgm-putz-with-case zone-pgm-dissolve zone-pgm-explode zone-pgm-whack-chars zone-pgm-rotate zone-pgm-rotate-LR-lockstep zone-pgm-rotate-RL-lockstep zone-pgm-rotate-LR-variable zone-pgm-rotate-RL-variable zone-pgm-drip zone-pgm-drip-fretfully zone-pgm-five-oclock-swan-dive zone-pgm-martini-swan-dive zone-pgm-rat-race zone-pgm-paragraph-spaz zone-pgm-stress zone-pgm-stress-destress zone-pgm-random-life </code></pre> http://stackoverflow.com/questions/1909453/what-mode-do-people-use-when-using-emacs-to-edit-web-pages-that-contain-css-java Comment by Trey Jackson on What mode do people use when using Emacs to edit web pages that contain CSS, javascript, and HTML? Trey Jackson 2009-12-17T00:13:27Z 2009-12-17T00:13:27Z @pajato0 ha! <i>__</i> Though I do agree with the general feeling that it is a bad thing that Emacs questions get split between two communities (SO and SU). e.g. on SU, there are roughly same number of visual studio (80) questions as emacs (70), but on SO, there are an order of magnitude more visual studio (10k) as emacs (1k). Of course this comment belongs on meta... http://stackoverflow.com/questions/1910115/mumamo-alt-php-tags-mode-by-default/1910264#1910264 Comment by Trey Jackson on mumamo-alt-php-tags-mode by default Trey Jackson 2009-12-15T22:16:58Z 2009-12-15T22:16:58Z Even without the minimal reputation for upvoting, you can accept answers to questions you've asked. http://stackoverflow.com/questions/1893795/emacs-newbie-question-how-to-search-within-a-region/1893905#1893905 Comment by Trey Jackson on emacs newbie question - how to search within a region Trey Jackson 2009-12-14T23:38:13Z 2009-12-14T23:38:13Z I had a (global-set-key &quot;\C-xn&quot; 'other-window) in my .emacs for at least 10 years, had no idea it shadowed those. Thanks. http://stackoverflow.com/questions/1878129/how-do-i-hide-number-of-links-in-dired/1878573#1878573 Comment by Trey Jackson on How do I hide number of links in dired? Trey Jackson 2009-12-10T18:58:43Z 2009-12-10T18:58:43Z There's so much stuff out there. Just yesterday I posted a link to a package that solved a problem, but Emacs already had built-in stuff that did nearly exactly the same thing. http://stackoverflow.com/questions/1877612/how-can-i-tell-if-a-file-has-the-windows-hidden-bit-in-emacs/1877760#1877760 Comment by Trey Jackson on How can I tell if a file has the Windows "hidden bit" in Emacs? Trey Jackson 2009-12-09T23:54:00Z 2009-12-09T23:54:00Z A search through Emacs' code shows nothing for hidden files, and <code>file-attributes</code> returns the same thing whether the hidden bit is on or off. http://stackoverflow.com/questions/1877103/how-can-i-get-more-colors-in-emacs-vc-diff/1877442#1877442 Comment by Trey Jackson on How can I get more colors in emacs vc-diff? Trey Jackson 2009-12-09T23:03:49Z 2009-12-09T23:03:49Z +1 I totally missed the default coloring options. <code>diff-mode-</code> has some flair, but this totally works. http://stackoverflow.com/questions/1877103/how-can-i-get-more-colors-in-emacs-vc-diff/1877253#1877253 Comment by Trey Jackson on How can I get more colors in emacs vc-diff? Trey Jackson 2009-12-09T22:47:46Z 2009-12-09T22:47:46Z Yah, I don't like the default colors of that package. http://stackoverflow.com/questions/1856203/windows-and-minibuffer-floating-over-the-frame Comment by Trey Jackson on Windows and Minibuffer floating over the frame Trey Jackson 2009-12-09T22:19:42Z 2009-12-09T22:19:42Z Are you running in a terminal? (i.e. emacs -nw) http://stackoverflow.com/questions/1869305/guide-to-switch-from-visual-studio-to-emacs-on-windows/1869318#1869318 Comment by Trey Jackson on Guide to switch from Visual Studio to Emacs on windows? Trey Jackson 2009-12-08T21:36:25Z 2009-12-08T21:36:25Z It's a tired joke. http://stackoverflow.com/questions/1868807/elisp-function-returning-mark-instead-of-the-right-value Comment by Trey Jackson on Elisp function returning mark instead of the right value Trey Jackson 2009-12-08T18:32:08Z 2009-12-08T18:32:08Z Emacs lisp programming tip, if you look at the bottom of the documentation string for <code>set-mark-command</code> you'll see: Novice Emacs Lisp programmers often try to use the mark for the wrong purposes. See the documentation of `set-mark' for more information. http://stackoverflow.com/questions/1855890/viper-mode-in-all-modes/1855952#1855952 Comment by Trey Jackson on Viper mode in all modes Trey Jackson 2009-12-08T15:12:17Z 2009-12-08T15:12:17Z The link was on the 'viper-vi-state-mode-list, I aded another link that's the intuitive one. http://stackoverflow.com/questions/1852844/emacs-lisp-difference-between-function-lambda-and-lambda/1853970#1853970 Comment by Trey Jackson on Emacs Lisp: difference between (function (lambda ...)) and (lambda ...)? Trey Jackson 2009-12-06T00:36:04Z 2009-12-06T00:36:04Z @Joscha, not sure what part you're commenting on. Lambda is self-quoting, which just means that when the interpreter evaluates a lambda expression, the result is that same lambda expression. I believe this is different than most other lisps because of the variable lookup used by Emacs (indefinite scope and dynamic extent). Scheme creates little closures with some environment information because of the lexical extent (I believe). http://stackoverflow.com/questions/1459429/strtotime-for-emacs-lisp/1461234#1461234 Comment by Trey Jackson on strtotime for Emacs Lisp Trey Jackson 2009-12-04T19:51:02Z 2009-12-04T19:51:02Z The function `org-read-date-analyze isn't a command, but is defined in org.el around line 13155 (for latest org.el: <a href="http://repo.or.cz/w/org-mode.git/blob/HEAD:/lisp/org.el" rel="nofollow">repo.or.cz/w/org-mode.git/&hellip;</a>) http://stackoverflow.com/questions/1836925/emacs-find-name-dired-how-to-change-default-directory/1839740#1839740 Comment by Trey Jackson on emacs - find-name-dired - how to change default directory Trey Jackson 2009-12-03T13:59:55Z 2009-12-03T13:59:55Z The best way to understand how to use advice is to go through the tutorial at the beginning (in the comments) of the advice library itself. Either <code>M-x find-library advice RET</code> or look at the source here: <a href="http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/emacs-lisp/advice.el" rel="nofollow">git.savannah.gnu.org/cgit/emacs.git/&hellip;</a> http://stackoverflow.com/questions/1822849/what-are-these-ms-that-keep-showing-up-in-my-files-in-emacs Comment by Trey Jackson on What are these ^M's that keep showing up in my files in emacs? Trey Jackson 2009-11-30T22:40:19Z 2009-11-30T22:40:19Z The bigger issue is, what are you going to do about it? Chances are, Emacs isn't introducing them. Your team should decide whether or not the files should be of DOS format (have ^M) or Unix format (no ^M), and enforce that.