active questions tagged elisp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:02:21Z http://stackoverflow.com/feeds/tag/elisp http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1416882/emacs-defadvice-on-python-mode-function 1 emacs defadvice on python-mode function Stephen 2009-09-13T04:52:45Z 2009-12-05T10:43:59Z <p>Hi! In python-mode, there is a function called py-execute-region which sends a highlighted region of code to the Python buffer for evaluation. After evaluation, the cursor is in the Python buffer, but I would prefer that it remain in the script buffer so I can continue producing more code. I wrote a simple advising function:</p> <pre><code>(defadvice py-execute-region (after py-execute-region-other-window activate) """ After execution, return cursor to script buffer """ (other-window 1) ) </code></pre> <p>But this does not do anything at all. I've tried other variants like using 'around' rather than 'after'; setting a variable to the script buffer name and then pop-to-buffer to that buffer and stuff like that. No success! I wonder if the mechanics of this is obvious to someone... Thanks!</p> http://stackoverflow.com/questions/1604597/emacs-using-select-all-in-function-how-to-find-the-function-bound-to-a-key 1 Emacs - Using "Select All" in Function (how to find the function bound to a key) mabwi 2009-10-22T01:39:26Z 2009-12-04T19:59:45Z <p>I'm trying to figure out Elisp, and I've hit a roadblock.</p> <p>I want a function that will Indent the entire file. Right now, I'm selecting the whole file (<kbd>C-x h</kbd>) and then doing <kbd>M-x indent-region</kbd> (which does have a shortcut key).</p> <p>I'd like to combine that in to a single keypress, but can't figure out how to do <kbd>C-x h</kbd> in a function.</p> <p>Thanks</p> http://stackoverflow.com/questions/1351852/debug-elisp-major-mode 1 debug elisp major mode Alex 2009-08-29T16:41:32Z 2009-12-04T19:54:00Z <p>I'm developing a major mode for Emacs. Is there any way that I can set a break point in the source code when fontification happens, for example?</p> http://stackoverflow.com/questions/1824696/function-to-call-same-shell-command-in-dired 1 function to call same shell command in dired Vinh Nguyen 2009-12-01T08:10:28Z 2009-12-02T15:16:28Z <p>hi,</p> <p>i'd like to be able to call the same shell command on the marked files in dired without the need for emacs to prompt the command input as the command will always be the same. in particular, the command is "open" (for mac os x).</p> <p>i tried to hack the function dired-do-shell-command in dired-aux.el but i don't understand the interactive line.</p> <p>at the end of the day, i'd like to be able to bind this function to C-o for dired-mode so that i don't have to use mac os x's Finder to navigate files and open them. this will allow me to move to emacs entirely.</p> <p>thanks.</p> http://stackoverflow.com/questions/1817257/how-to-determine-operating-system-in-elisp 3 How to determine operating system in elisp? kronoz 2009-11-30T00:14:28Z 2009-11-30T23:39:41Z <p>Sorry if this has already been asked; however I don't seem to be able to find an answer anywhere grr.</p> <p>How do I programmatically determine which os emacs is running under in elisp? I would like to run different code in .emacs depending on the os.</p> http://stackoverflow.com/questions/1576887/what-does-l-in-emacs-lisp-source-code-mean 5 What does ^L in (Emacs Lisp) source code mean? Török Gábor 2009-10-16T08:42:56Z 2009-11-30T08:31:42Z <p>Several times I see <code>^L</code> in (mostly Emacs Lisp) source codes that looks like are separators of larger logical groups. Is it their real purpose? And if so, how can I use them? Is there a built-in Emacs functionality that utilize it?</p> http://stackoverflow.com/questions/1808035/emacs-zen-coding-mode-and-putty 2 Emacs, Zen-Coding mode, and Putty. Phillip Oldham 2009-11-27T10:47:00Z 2009-11-28T16:56:02Z <p>I use emacs via Putty and since Putty doesn't send certain key combinations to the remote console I generally need to re-bind them to other key combinations.</p> <p>After installing the amazing <a href="http://code.google.com/p/zen-coding/" rel="nofollow">Zen-Coding</a> <a href="http://www.emacswiki.org/emacs/ZenCoding" rel="nofollow">mode</a> I had some trouble with the preview it generated; I couldn't get it to insert the output it was previewing. I got around this with the following keybindings:</p> <pre><code>(global-set-key "\M-\r" 'zencoding-expand-line) (global-set-key "\M-]" 'zencoding-preview-accept) </code></pre> <p>However, what I'd <em>like</em> to do is be able to hit <code>M-RET</code> again when the preview is open and have it insert the output. </p> <p>My emacs-lisp-fu is <strong>extremely</strong> weak, however.</p> <p>Is there a way I can test whether the preview is open and capture/bind another <code>M-RET</code> keypress?</p> http://stackoverflow.com/questions/945709/emacs-23-os-x-multi-tty-and-emacsclient 3 Emacs 23, OS X, multi-tty and emacsclient Singletoned 2009-06-03T16:26:48Z 2009-11-25T23:43:23Z <p>How can I get emacs 23 working nicely in multi-tty mode on OS X?</p> <p>I've added <code>(server-start)</code> to my .emacs, and have discovered that running <code>/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -n ~/myfile.txt</code> will open it in my emacs.app, but it doesn't bring emacs to the front.</p> <p>So, how can I get emacs.app to come to the front when I run emacsclient? (I've considered writing a function that puts the current frame to the front every time a file is opened, or maybe writing an Applescript to do a similar job that could be called at the same time as emacsclient)</p> <p>Is the emacsclient within emacs.app the best one to use? I assume I'll write an alias to it if so, but it seems weird to be using that rather than something in /usr/local/bin</p> <p>Has anyone got any other tips or examples of getting this working?</p> http://stackoverflow.com/questions/1760939/how-to-write-an-emacs-function-to-wrap-the-marked-region-with-specified-text 4 How to write an Emacs function to wrap the marked region with specified text Vinh Nguyen 2009-11-19T04:47:50Z 2009-11-25T17:36:20Z <p>I'm not too familiar with elisp, and am trying to learn. In emacs, I'd like to be able to do the following: </p> <ol> <li>Mark via C-space</li> <li>Go to where I want the the marking to end, so I have a region that is highlighted, suppose it is "highlighted text"</li> <li>Hit a key-sequence</li> <li>Have emacs ask me to input some text, say "plot", and</li> <li><p>Have that highlighted text change to be "plot(highlighted text)". That is, I'd like to wrap the highlited text with parentheses and precede it with the text I input.</p> <pre><code>(defun wrap-text () ) </code></pre></li> </ol> <p>I suppose the input of the function would be the highlighted text, but I don't know where to start looking. The other hard part would be the input text part. Could someone guide me? Thanks.</p> http://stackoverflow.com/questions/815239/how-to-maximize-emacs-on-windows-at-startup 6 How to maximize Emacs on Windows at startup? polyglot 2009-05-02T17:20:31Z 2009-11-25T00:33:14Z <p>This is driving me crazy: I simply want Emacs to maximize to whatever screen resolution I have at startup. Ideally I like a cross-platform (Windows &amp; Linux) solution that works on any screen resolution, but I can't even get it to work on just Window XP with even hard-coded sizes. </p> <p>Here are what I tried:</p> <ol> <li>Setting the initial-frame-alist with appropriate height/width</li> <li>Setting the default-frame-alist</li> <li>(Windows specific stuff) Sending message to the emacs windows telling it to maximize via (w32-send-sys-command 61488)</li> <li><p>Tried this function which I found somewhere: [no idea why the SO code formatting does not work below...]</p> <p>(defun toggle-fullscreen () "toggles whether the currently selected frame consumes the entire display or is decorated with a window border" (interactive) (let ((f (selected-frame))) (modify-frame-parameters f `((fullscreen . ,(if (eq nil (frame-parameter f 'fullscreen)) 'fullboth nil))))))</p></li> <li><p>Tried the above methods in both beginning and end of my init file to try to eliminate interference from other init things. </p></li> </ol> <p>Unfortunately, none of the above works!! For some of the above, I can see my emacs windows resizes correctly for a split second before reverting back to the smallish default size. And if I run the methods above after the initialization, the emacs windows DOES resize correctly. What in the world is going on here?</p> <p>[p.s. there are other SO questions on this but none of the answers work]</p> <p><hr /></p> <p><strong><em>Update:</em></strong></p> <p>The answers make me think that something else in my init file is causing the problem. And indeed it is! After some try-and-error, I found the culprit. If I commented out the following line, everything works perfectly:</p> <pre><code> (tool-bar-mode -1) </code></pre> <p>What in the world does the toolbar have to do with maximizing windows? </p> <p>So the question now is: how can I disable toolbar (after all, emacs's toolbar is ugly and takes up precious screen real-estate) AND maximize the windows both in my init file? It is possibly a bug that toolbar interferes with the windows size? </p> <p>Clarification: (tool-bar-mode -1) turns the toolbar off, but this line interferes with maximizing the Emacs windows. So if I try put functions to maximize windows and turn off the toolbar, the maximize part will fail; if the toolbar part is commented out, then the maximize part will work ok. It does not even matter what solutions I use (among the 4 that I listed). </p> <p><hr /></p> <p><strong><em>Solution:</em></strong> (or at least what work for me now)</p> <p>This is probably a bug in Emacs. The workaround is to disable the toolbar through the Registry, not in .emacs. Save the following as a .reg file, and execute that file in Windows Explorer:</p> <pre><code>Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\GNU\Emacs] "Emacs.Toolbar"="-1" </code></pre> <p>(This solution is a working version of what OtherMichael suggested).</p> http://stackoverflow.com/questions/1788425/set-text-properties 1 set text properties Oleg Pavliv 2009-11-24T07:24:34Z 2009-11-24T14:58:37Z <p>I want to copy a text from one buffer to another with text properties. So I have </p> <pre><code>(with-current-buffer from-buffer (setq text-to-copy (buffer-substring beg end))) </code></pre> <p>How can I insert the text-to-copy to another buffer with all text properties? I'm interested especially in 'face' properties.</p> <p>The function buffer-substring returns a list, for example <code>("substring" 42 51 (face font-lock-keyword-face) 52 59 (face font-lock-function-name-face))</code></p> <p>If I pass this list to <code>(insert text-to-copy)</code> it seems that it ignores text properties</p> http://stackoverflow.com/questions/1780838/difference-between-symbol-and-variable-name-in-emacs-lisp 4 Difference between symbol and variable name in emacs lisp kjshim 2009-11-23T02:35:22Z 2009-11-23T17:58:25Z <p>I'm wondering what the difference is between </p> <pre><code>(add-to-list 'flymake-allowed-file-name-masks '("\\.py\\'" flymake-pylint-init)) </code></pre> <p>and </p> <pre><code>(add-to-list flymake-allowed-file-name-masks '("\\.py\\'" flymake-pylint-init)) </code></pre> <p>What is the clear meaning of the apostrophe here? </p> http://stackoverflow.com/questions/1779368/defaultcontent-el-lisp-tag-read-closest-sexp 0 defaultcontent.el - @@LISP tag - read-closest-sexp? Cheeso 2009-11-22T17:38:32Z 2009-11-22T22:44:18Z <p>I started using <a href="http://pagesperso-systeme.lip6.fr/Christian.Queinnec/Miscellaneous/defaultcontent.el" rel="nofollow">defaultcontent.el</a> to fill newly-created buffers with content. Apparently this module is not widely used. I think there are 3 people including me and the author who use it, because when I do a search on it, my published emacs.el comes up as the first hit. </p> <p>Despite that, I find it useful. I specify a template for each file type, and every time I create a new file of that type (or extension), it gets filled with the content in the template file. The template supports well-known tags set off with "@@", that get substituted at runtime: </p> <ul> <li>AUTHOR inserts the user name; </li> <li>DATE (obvious); </li> <li>FILENAME, inserts the name of the file being created; </li> <li>ENV(xxx), inserts the value of the environment variable xxx; </li> <li>and there are a few other tags. </li> </ul> <p>eg, whereever @@AUTHOR@@ is found in the template, it gets replaced with your user name at runtime in the newly created file.</p> <p>ok, this isn't an advertisement for defaultcontent.el, I just thought I'd explain it a little. </p> <p><hr></p> <p>here's the question. </p> <p>One of the well-known tags in the template is LISP - it purports to run arbitrary elisp code to generate content to insert into the new buffer. (usage: @@LISP(<em>lisp content here</em>)@@). It depends on a function <code>read-closest-sexp</code>, which I guess would just read the sexp at point. </p> <p>I can't find this function. It's not included in defaultcontent.el, and I'm not up enough on elisp to create it easily. I looked in emacs-lisp\lisp.el for hints but it seemed non obvious. </p> <p><strong>Question:</strong> how can I read the sexp at point into a variable? </p> <p>I'm guessing this is 2 lines in elisp...</p> http://stackoverflow.com/questions/1755785/emacs23-php-mode-problem 2 Emacs23 php-mode problem partoa 2009-11-18T12:53:24Z 2009-11-19T09:08:51Z <p>I keep getting this error and similar errors while using php-mode on Emacs23 on Ubuntu:</p> <pre><code>Debugger entered--Lisp error: (void-function php-template-if-hook) php-template-if-hook() abbrev-insert(if #("if" 0 2 (fontified t face font-lock-keyword-face)) 414 416) #[(G73404 funs global) "[Byte Code]" apply(#[(G73404 funs global "[Byte Code]" (lambda (&amp;rest --cl-rest--) (apply #[... "[Byte Code]" expand-abbrev() self-insert-command(1) c-electric-paren(nil) call-interactively(c-electric-paren nil nil) </code></pre> <p>when I type <code>if(</code>, and the error below when I type <code>array(</code> or anything that ends with <code>array(</code>, e.g. <code>is_array(</code>:</p> <pre><code>Debugger entered--Lisp error: (void-function php-template-if-hook) php-template-if-hook() abbrev-insert(if #("if" 0 2 (fontified t face font-lock-keyword-face)) 414 416) #[(G73404 funs global) "[Byte code]" apply(#[(G73404 funs global "[Byte Code]" (lambda (&amp;rest --cl-rest--) (apply #[... "[Byte Code]" expand-abbrev() self-insert-command(1) c-electric-paren(nil) call-interactively(c-electric-paren nil nil) </code></pre> <p>This error is raised even when I use the emacs starter kit. Anyone fixed a similar problem?</p> <p>The php-mode.el I use is from the <a href="http://github.com/technomancy/emacs-starter-kit" rel="nofollow">emacs starter kit</a> which bundles a version of <a href="http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html" rel="nofollow">nxhtml</a>. I tried using <a href="http://downloads.sourceforge.net/php-mode/php-mode-1.5.0.zip" rel="nofollow">php-mode-1.5.0</a> still no success. I even tried using the latest version of nxhtml(2.2), but still the same error persisted. I had to copy and paste all the function definitions missing from <a href="http://mewde.googlecode.com/files/php-mode-new.el" rel="nofollow">mewde</a> for it to work with relative sanity. I have to say that it does add some value though. :)</p> <p>The funny thing, this problems seems to be an Ubuntu Karmic only problem for me, I was using the same stuff on the emacs on opensuse 11.0 and 11.1 without a single problem.</p> <p>Thanks.</p> http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings 4 How to handle conflicting keybindings Brian Carper 2008-11-18T07:21:44Z 2009-11-14T20:19:30Z <p><a href="http://mumble.net/~campbell/emacs/paredit.el" rel="nofollow">paredit</a> binds <code>M-&lt;up&gt;</code> and <code>M-&lt;down&gt;</code>, but I want <a href="http://www.emacswiki.org/emacs/WindMove" rel="nofollow">windmove</a> to own those keybindings. I have paredit-mode set to activate in certain modes only, but windmove is set to run globally. I want windmove to win, but paredit steals those keybindings when it loads.</p> <p>How can I easily stop paredit from stomping on windmove's keybindings? I have been going into <code>paredit.el</code> and commenting out the lines which set the keybinding, but this is far from ideal (I have to remember to do this every time I update paredit).</p> <p>More generally, can I load an elisp file while "protecting" certain keybindings from being changed?</p> http://stackoverflow.com/questions/275842/is-there-a-repeat-last-command-in-emacs 13 Is there a (repeat-last-command) in emacs? ack 2008-11-09T11:37:02Z 2009-11-14T20:17:27Z <p>frequently, I've dug into apropos and docs looking for something like the following only to give up to get back to the task at hand:</p> <p>(repeat-last-command)</p> <p>do the last C- or M- command I just executed (to be rebound to a fn key)</p> <p>or sometimes the related: </p> <p>(describe-last-function)</p> <p>what keystroke did I just mistakenly issue, the effect of which I'd like to add to my bag of tricks. describe-key is close, but requires knowing what I typed. </p> <p>am I simply asking too much from my trusty sidekick?</p> http://stackoverflow.com/questions/41522/tips-for-learning-elisp 13 Tips for Learning Elisp? kaybenleroll 2008-09-03T12:09:48Z 2009-11-13T22:29:05Z <p>I have been using emacs for years now and I keep meaning to get a better understanding of elisp so I can customize the editor. One problem I have found is that it is a fairly daunting task to get started with.</p> <p>I have a basic understanding of LISP syntax, but is there any articles out there to help someone get started? Perhaps a tutorial on the programming, or a couple of suggestions of useful and straightforward things to implement?</p> http://stackoverflow.com/questions/1664202/emacs-lisp-evaluate-variable-in-alist 3 Emacs Lisp: evaluate variable in alist kastauyra 2009-11-02T22:42:41Z 2009-11-13T19:22:42Z <p>This is probably silly but I don't have enough Elisp knowledge to understand what is going on with respect to quoting and evaluation.</p> <p>Suppose I have this Elisp code:</p> <pre><code>(add-to-list 'default-frame-alist '(width . 100)) (add-to-list 'default-frame-alist '(height . 50)) </code></pre> <p>It will result in the expected default-frame-alist value:</p> <pre><code>((height 50) (width 100)) </code></pre> <p>But now if I have this:</p> <pre><code>(setq my-frame-width 100) (setq my-frame-height 50) (add-to-list 'default-frame-alist '(width . my-frame-width)) (add-to-list 'default-frame-alist '(height . my-frame-height)) </code></pre> <p>It will result in -</p> <pre><code>((height my-frame-height) (width my-frame-width)) </code></pre> <p>and, judging from the frame geometry, never evaluates those variables. How do I make the actual values of my-frame-width and height appear in this alist? Do I have too many quotes? But I cannot remove any from the add-to-list evaluations...</p> http://stackoverflow.com/questions/1663627/guile-and-emacs 1 Guile and Emacs? melling 2009-11-02T20:52:56Z 2009-11-11T15:12:06Z <p>I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile. </p> <p><a href="http://sanpietro.red-bean.com/guile/guile/old/3114.html" rel="nofollow">http://sanpietro.red-bean.com/guile/guile/old/3114.html</a></p> <p>I was wondering if this is still a possibility, and if developers should be trying to write Elisp with this in mind? The original goal was for Guile to be backwards compatible with Elisp, but it seems like developing Scheme is the better choice.</p> http://stackoverflow.com/questions/1714847/in-emacs-how-does-the-hyperlink-in-the-help-buffer-work 4 In emacs how does the "hyperlink" in the *Help* buffer work? Rohith 2009-11-11T12:20:53Z 2009-11-11T13:57:22Z <p>I'm trying to figure out how the "hyperlink" works in the <code>*Help*</code> buffer (so that I can implement something similar in the output of M-x compile). Here is a more detailed description of the behaviour I want to imitate: <code>M-x describe-function find-file</code> opens up a <code>*Help*</code> buffer. The first line of this buffer (for me) shows: <code>find-file is an interactive Lisp function in files.el.</code> files.el is underlined and clicking (or hitting enter when point is there) opens a new buffer with files.el and the point positioned at the definition of <code>find-file</code>. Doing a describe-key for says invokes push-button in button.el, which tells me <code>Perform the action specified by a button at location pos</code> - but how do I define a button and associate an action with that button in my own buffer?</p> http://stackoverflow.com/questions/1707499/eval-during-emacs-lisp-macro-expansion 1 eval during emacs lisp macro expansion RamyenHead 2009-11-10T12:08:49Z 2009-11-11T06:16:01Z <p>How can I fix the simple macro <code>foo</code> in <a href="http://www.cs.cmu.edu/cgi-bin/info2www?%28elisp%29Eval%20During%20Expansion" rel="nofollow">(elisp)Eval During Expansion</a>?</p> <p>None of the followings work:</p> <pre><code>(defmacro foo1 (a) `(setq (eval ,a) t)) (defmacro foo2 (a) `(setq ,(eval a) t)) (defmacro foo3 (a) `(setq ,a t)) </code></pre> <p>I really don't get what's said in <a href="http://www.cs.cmu.edu/cgi-bin/info2www?%28elisp%29Eval%20During%20Expansion" rel="nofollow">(elisp)Eval During Expansion</a>. I think if I got it, I'd have been able to fix the macro.</p> <p>Update: huaiyuan's solution works:</p> <pre><code>(defmacro foo7 (a) `(set ,a t)) (setq x 'b a 'c) (foo7 x) (assert (eq b t)) (assert (eq x 'b)) (foo7 a) (assert (eq a 'c)) (assert (eq c t)) (macroexpand '(foo7 x)) ; ==&gt; (set x t) (macroexpand '(foo7 a)) ; ==&gt; (set a t) </code></pre> http://stackoverflow.com/questions/1706157/in-emacs-how-do-i-figure-out-which-package-is-loading-tramp 2 In Emacs, how do I figure out which package is loading tramp? Rohith 2009-11-10T07:23:32Z 2009-11-10T14:11:42Z <p>I have a strange interaction with tramp and cygwin-mount (I think: <a href="http://stackoverflow.com/questions/1705802/emacs-tab-completion-of-file-name-appends-an-extra-i-cygwin">http://stackoverflow.com/questions/1705802/emacs-tab-completion-of-file-name-appends-an-extra-i-cygwin</a>). Because of this, I want to disable tramp. I'm unable to find anything in my .emacs which is loading tramp explicitly. I can see "Loading tramp..." when I hit a tab in the find-file minibuffer. I'd like to figure out what package is causing the loading of tramp and disable that. How do I go about doing this? I tried searching for (require 'tramp) but couldn't find anything interesting. The only other option I can think of is to comment out bits of my .emacs one-by-one and see which one works - but this is so brute-force, I'd like a cleverer (and easier) way.</p> http://stackoverflow.com/questions/1705802/emacs-tab-completion-of-file-name-appends-an-extra-i-cygwin 1 Emacs: Tab completion of file name appends an extra i:\cygwin Rohith 2009-11-10T05:27:50Z 2009-11-10T12:49:30Z <p>I am facing some strange behavior with file-name completion in emacs. C-x C-f to find file opens up the minibuffer with i:/cygwin/home/rrajagop/StockScreener/working_copy/master_repo/stock_screener/. Hitting a TAB makes it i:/cygwini:/cygwin/home/rrajagop/StockScreener/working_copy/master_repo/stock_screener/. A couple of interesting things I've noticed:</p> <ol> <li>When the minibuffer opens up, i:/cygwin is greyed out and the path seems to start from /home. A C-a (go to begining of line) takes me to /home and not to i:/cygwin. So it looks like something in emacs is parsing the path to start from /home and not from i:/cygwin. </li> <li>I checked that TAB runs minibuffer-complete from minibuffer.el (by doing a describe-key for TAB), so it looks like minibuffer-complete is doing some translation for cygwin and appending the extra i:/cygwin. </li> </ol> <p>How would I go about figuring this out/fixing it? </p> <p>EDIT: Extra Information I tried opening up emacs with -Q and this problem doesn't happen. So this is something I'm loading in my .emacs. This is what I have in my .emacs</p> <pre><code>(require 'cl) ; Needed to see how fast Emacs loads. Loading time is printed at the ; and of the execution of .emacs file. (defvar *emacs-load-start* (current-time)) ; I really like this font. I also tried Monaco which you can ; see on lot of Railscasts but I couldn't find the one which ; supports Serbian Cyrillic and Latin letters. (set-default-font "-outline-Courier New-normal-r-normal-normal-19-142-96-96-c-*-iso8859-1") ;; Don't show that splash screen (setq inhibit-startup-message t) ; This should allegedly speed up Emacs starting by preventing ; some requests from the window manager back to the Emacs. Frankly ; speaking I didn't notice some speed up but I still keep it:( (modify-frame-parameters nil '((wait-for-wm . nil))) ;Allows syntax highlighting to work, among other things (global-font-lock-mode 1) ; Sets initial window position (set-frame-position (selected-frame) 0 0) ; Sets initial window size to 85 columns and 47 rows (set-frame-size (selected-frame) 88 32) ; Makes last line ends in carriage return (setq requre-final-newline t) ; Sets Ctrl-x / key combination for easy commenting ; out of selected lines. (global-set-key "\C-x/" 'comment-or-uncomment-region) ; Allow resizing of the mini-buffer when necessary (setq resize-minibuffer-mode t) ; Auto magically read compressed files (auto-compression-mode 1) ; Set standard indent to 2 rather then 4 (setq standard-indent 2) ; This tells Emacs to create backup files. (setq make-backup-files t) ; And this will enable versioning with default values. (setq version-control t) ; Remove annoying message about deleting excess backup of .recentf ; which is list of recent files used (setq delete-old-versions t) ; Finally do not spread backups all over the disk. ; Just save all backup files in this directory. (setq backup-directory-alist (quote ((".*" . "~/.emacs_backups/")))) ;; Directory to put various el files. (add-to-list 'load-path "~/.emacs.d/includes") (require 'ascii-table) ;; Loading collection of generic modes for different languages (require 'generic-x) ;; Recent files (require 'recentf) (recentf-mode 1) ;; Loads ruby mode when a ruby file is opened. (autoload 'ruby-mode "ruby-mode" "Major mode for editing ruby scripts." t) (setq auto-mode-alist (cons '(".rb$" . ruby-mode) auto-mode-alist)) (setq auto-mode-alist (cons '(".rhtml$" . html-mode) auto-mode-alist)) (setq auto-mode-alist (cons '(".html.erb$" . html-mode) auto-mode-alist)) ;; Turn on ruby electric (auto completion of parenthesis, etc.) (add-hook 'ruby-mode-hook (lambda() (add-hook 'local-write-file-hooks '(lambda() (save-excursion (untabify (point-min) (point-max)) (delete-trailing-whitespace) ))) (set (make-local-variable 'indent-tabs-mode) 'nil) (set (make-local-variable 'tab-width) 2) (imenu-add-to-menubar "IMENU") (define-key ruby-mode-map "\C-m" 'newline-and-indent) (require 'ruby-electric) (ruby-electric-mode t) )) ;; Ruby debugging. (add-to-list 'load-path "~/.emacs.d/plugins/rdebug") (autoload 'rdebug "rdebug" "Ruby debugging support." t) (global-set-key [f9] 'gud-step) (global-set-key [f10] 'gud-next) (global-set-key [f11] 'gud-cont) (global-set-key "\C-c\C-d" 'rdebug) ;; set compile command based on current major mode (autoload 'mode-compile "mode-compile" "Command to compile current buffer file based on the major mode" t) (global-set-key "\C-cc" 'mode-compile) (autoload 'mode-compile-kill "mode-compile" "Command to kill a compilation launched by `mode-compile'" t) (global-set-key "\C-ck" 'mode-compile-kill) ;; yasnippet - adding code snippet insertion (add-to-list 'load-path "~/.emacs.d/plugins/yasnippet") (require 'yasnippet) ;; not yasnippet-bundle (yas/initialize) (yas/load-directory "~/.emacs.d/plugins/yasnippet/snippets") ;; Use CYGWIN bash (require 'setup-cygwin) ;; Subversion integration via psvn - not gonna use svn anymore ;; (require 'psvn) ;; add some elisp tutorials to the info directory (let ((info-root (concat usb-drive-letter "cygwin/usr/local/bin/emacs/info/"))) (setq Info-directory-list (list info-root (concat info-root "elisp-tutorial-2.04/") (concat info-root "emacs-lisp-intro-2.14")) ) ) ;; Load time for .emacs - this should be the last line in .emacs for accurate load time (message "ido and org-install took: %ds" (destructuring-bind (hi lo ms) (current-time) (- (+ hi lo) (+ (first *emacs-load-start*) (second *emacs-load-start*)) ))) </code></pre> http://stackoverflow.com/questions/885793/emacs-error-when-calling-server-start 2 Emacs - Error when calling (server-start) Jonas Gorauskas 2009-05-20T01:35:45Z 2009-11-10T08:37:11Z <p>I am currently using GNU Emacs 23.0.93.1 in Windows Vista SP1. In my .emacs file I make a call to <code>(server-start)</code> and that is causing an error with the message <em>The directory ~/.emacs.d/server is unsafe</em>. Has anyone seen this and know a fix or workaround? ... other than leaving server turned off ;) </p> <p>Here is the stack trace:</p> <pre><code>Debugger entered--Lisp error: (error "The directory ~/.emacs.d/server is unsafe") signal(error ("The directory ~/.emacs.d/server is unsafe")) error("The directory %s is unsafe" "~/.emacs.d/server") server-ensure-safe-dir("~\\.emacs.d\\server\\") server-start(nil) call-interactively(server-start t nil) execute-extended-command(nil) call-interactively(execute-extended-command nil nil) </code></pre> http://stackoverflow.com/questions/1473731/traversing-a-directory-tree 1 Traversing a directory tree Hamza Yerlikaya 2009-09-24T19:33:03Z 2009-11-06T01:14:39Z <p>i am trying to traverse a given directory and create a list of files ending in .jpg.</p> <pre><code>(setq files (list )) (defun jpg-list(directory) (dolist (node (directory-files directory t ) ) (if (file-directory-p node) (if (not (string= (substring node (- (string-width node) 1)) ".")) (jpg-list node)) (if (string-match ".jpg" node) (setq files (cons node files))))) files) </code></pre> <p>i would like to do this without using an external variable (files). What is the idiomatic way of doing this in elisp?</p> http://stackoverflow.com/questions/1679268/testing-for-platform-in-elisp 2 Testing for platform in elisp? Phillip Oldham 2009-11-05T09:07:14Z 2009-11-05T09:32:25Z <p>I'm sharing my emacs configuration files between a linux box and an OS X box. The config breaks however when I define a specific font for Emacs.app in the config which is then not available on linux.</p> <p>Is there a way I can test for the current platform and then execute or skip the OS X specific instructions?</p> http://stackoverflow.com/questions/1623348/building-and-maintaining-a-database-in-emacs 2 Building and maintaining a database in Emacs? melling 2009-10-26T06:22:04Z 2009-11-02T09:18:32Z <p>I was reading the <a href="http://www.gigamonkeys.com/book/practical-a-simple-database.html" rel="nofollow">Simple Database</a> section of Peter Siebel's book <a href="http://www.gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a> with the idea of maintaining a small database of around 50,000 records. I thought doing this in Emacs might be an interesting, and useful, exercise. Emacs Lisp is somewhat compatible with CL except for a few <a href="http://www.gnu.org/software/emacs/manual/html_node/cl/Porting-Common-Lisp.html" rel="nofollow">notable differences</a>. The <strong>format</strong> function used in the above example being one major difference.</p> <p>Here's the code that contains everything needed to construct, save, and load the database in CL. Can this be modified to work well in Emacs? I omitted the <strong>select</strong> and <strong>where</strong> functions but I'd like to include them. Maybe there is a better Emacs way of building and maintaining a database? Personally, I'm using this as an exercise to learn CL and solve an existing problem.</p> <pre> ;; Simple Common Lisp database ;; http://www.gigamonkeys.com/book/practical-a-simple-database.html ;; (defvar *db* nil) (defun make-cd (title artist rating ripped) (list :title title :artist artist :rating rating :ripped ripped)) (defun add-record (cd) (push cd *db*)) (defun dump-db () (dolist (cd *db*) (format t "~{~a:~10t~a~%~}~%" cd))) (defun save-db (filename) (with-open-file (out filename :direction :output :if-exists :supersede) (with-standard-io-syntax (print *db* out)))) (defun load-db (filename) (with-open-file (in filename) (with-standard-io-syntax (setf *db* (read in))))) ; === ; ; Add some records ; (add-record (make-cd "Roses" "Kathy Mattea" 7 t)) (add-record (make-cd "Fly" "Dixie Chicks" 8 t)) (add-record (make-cd "Home" "Dixie Chicks" 9 t)) ; (dump-db) ; (save-db "cd.db") ; (load-db "cd.db") </pre> http://stackoverflow.com/questions/1642184/extracting-urls-from-an-emacs-buffer 1 Extracting URLs from an Emacs buffer? melling 2009-10-29T07:58:01Z 2009-11-01T14:02:26Z <p>How can I write an Emacs Lisp function to find all hrefs in an HTML file and extract all of the links?</p> <p>Input:</p> <pre> &lt;html> &lt;a href="http://www.stackoverflow.com" _target="_blank">StackOverFlow&lt/a> &lt;h1>Emacs Lisp&lt;/h1> &lt;a href="http://news.ycombinator.com" _target="_blank">Hacker News&lt/a> &lt;/html> </pre> <p>Output:</p> <pre> http://www.stackoverflow.com|StackOverFlow http://news.ycombinator.com|Hacker News </pre> <p>I've seen the re-search-forward function mentioned several times during my search. Here's what I think that I need to do based on what I've read so far.</p> <pre> (defun extra-urls (file) ... (setq buffer (... (while (re-search-forward "http://" nil t) (when (match-string 0) ... )) </pre> http://stackoverflow.com/questions/1636336/something-confusing-about-define-key-and-the-issue-of-when-to-quote-an-argument 3 something confusing about define-key (and the issue of when to quote an argument) RamyenHead 2009-10-28T10:19:36Z 2009-10-28T13:09:45Z <p>It seems one is not supposed to quote KEYMAP when using define-key.</p> <pre><code>(define-key org-remember-mode-map "\C-c\C-r" 'org-remember-kill) </code></pre> <p>I'm confused because I think that all arguments of a function that is not quoted are evaluated, and according to the help, define-key is a function, not a macro. I don't see why the value of KEYMAP can be modified after a call of define-key.</p> <pre><code>(defun increment-value (a) (setq a (+ 1 a))) (setq my-num 10) (increment-value my-num) my-num ; ===&gt; 10 </code></pre> http://stackoverflow.com/questions/344966/sane-tab-in-emacs 0 sane tab in emacs AlexH 2008-12-05T20:07:41Z 2009-10-28T02:47:56Z <p>I want to override the insane default tabbing scheme in emacs so that it will work like most other editors (eclipse, notepad++). For some reason I can't get it to go.</p> <p>I found a tutorial online ( first google result ), but none of the things there seemed to work. </p> <p>I want to set it so that regardless of mode, tab will insert a tab, and pressing enter will keep me at my current tab depth.</p> <p>I have: </p> <pre><code>(global-set-key (kbd "TAB") 'tab-to-tab-stop) (setq default-tab-width 4) ;; 8 is way too many </code></pre> <p>but it does nothing.</p>