active questions tagged dot-emacs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:31:16Z http://stackoverflow.com/feeds/tag/dot-emacs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1769745/where-is-emacs-file 0 Where is .emacs file? [closed] srinivas 2009-11-20T10:59:51Z 2009-11-20T11:56:56Z <p>I downloaded emacs 23.1 from gnu's ftp. untarred it and built it after configuring. I do not find .emacs file in my home directory or anywhere in my system ! Am i missing something ?</p> http://stackoverflow.com/questions/1731634/dont-show-uninteresting-files-in-emacs-completion-window 6 Don't show uninteresting files in Emacs completion window emacsulike 2009-11-13T20:18:25Z 2009-11-16T18:20:50Z <p>How do I prevent Emacs from showing me all the files I'm not interested in (such as ~ backup files, .pyc files, or .orig files) when I: C-x C-f <em>TAB</em> ?</p> <p>It is working in one respect: if I know the file I want to open begins with <em>foo</em> and I type foo <em>TAB</em> then the mini-buffer correctly autocompletes all the way to foo.py. It correctly ignored foo~ and foo.pyc, because both ~ and .pyc are in <a href="http://www.gnu.org/software/emacs/elisp/html%5Fnode/File-Name-Completion.html#index-completion%5F002dignored%5F002dextensions-1865" rel="nofollow">completion-ignored-extensions</a>. It also correctly lets me open either ignored file if I really want to by typing in all the letters my self.</p> <p>However, if I just hit <em>TAB</em> to to bring up the completion list buffer then that list includes files with extensions in <em>completion-ignored-extensions</em>, which makes it very difficult to find what I'm looking for.</p> <p>Clearly the code to ignore uninteresting files is there and working. How do I get the completion list buffer to respect <em>completion-ignored-extensions</em>?</p> <p>(by-the-by, can I make dired behave similarly?)</p> http://stackoverflow.com/questions/1664216/custom-theme-set-faces-compatible-with-tty 0 custom-theme-set-faces compatible with tty emacsulike 2009-11-02T22:46:12Z 2009-11-13T22:07:18Z <p>I have created an emacs-23 custom theme using customize-create-theme. It works fine under X (Linux gnome desktop). However, when running under a tty (within gnome-terminal) some of the colors are wrong.</p> <p>It is not the accuracy of the colors which are a problem (although it would be nice to match them under both situations) but the fact that some are so off as to be unworkable. For example, function names which appear green under X are invisible under the tty, although keywords which appear gold under X also appear gold (or at least some kind of yellow) under the tty.</p> <p>Perhaps under the tty colors can't be matched exactly and so something similar is being substituted? If so, this doesn't seem to work all the time.</p> <p>How can I fix this? Is it possible to specify, either in the 'customize' GUI or in the ~/.emacs.d/my-theme.el file, that certain faces only apply to frames displayed on X and others are only for the tty, or something similar?</p> <p>(I'm interested in getting this, the built-in emacs theming system working rather than using some external color theme system.)</p> http://stackoverflow.com/questions/1730903/emacs-setting-which-function-mode 0 Emacs Setting which-function-mode Stephen Burke 2009-11-13T17:57:38Z 2009-11-13T19:51:45Z <p>I would like to have which-function-mode on by default when I open up Emacs. I've added the following lines to my .emacs file. </p> <pre><code>(setq which-func-mode t) (setq which-function-mode t) </code></pre> <p>When I open up a .cpp file and navigate to the body of a function, I'm not seeing the function name in the status bar at the bottom like I should. If I then run M-x which-function-mode, the message is "Which-Function mode disabled" so it looks like the line in my .emacs file takes but is not quite working. </p> <p>Am I setting the wrong thing in my .emacs file or is something else going wrong? </p> 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/188488/in-emacs-how-to-switch-to-other-buffer 1 In Emacs how to switch to other buffer? avp 2008-10-09T18:16:37Z 2009-10-31T19:58:02Z <p>The problem is following: I want to automate the way my emacs starts. It has to be split in two buffers and the slime-repl has to be started in the smallest (bottom) buffer. Plus, I want my file to be opened in the bigger (upper) buffer. In my .emacs there are lines:</p> <pre><code>(slime) ... (split-window-vertically -6) (switch-to-buffer (other-buffer)) (find-file "g:/Private/pa/pa2.lsp") </code></pre> <p>SLIME opens o.k. in the bottom buffer, but the file is opened in one of the background buffers, while I want it to be in front.</p> <p>How to fix this?</p> http://stackoverflow.com/questions/1250792/how-to-keep-comments-on-variables-set-through-m-x-customize-on-emacs 4 How to keep comments on variables set through "M-x customize" on emacs? obvio171 2009-08-09T06:11:41Z 2009-09-29T19:17:48Z <p>When I set variables through <code>M-x customize</code>, the values are stored in this big, auto-generated, alphabetically ordered list in my <code>.emacs</code> file.</p> <p>The problem is I like to document why I chose a particular value other than the default for a particular variable. If I do that by adding elisp comments inside the auto-generated list, they are clobbered next time I customize another variable.</p> <p>Is there a way to make <code>Custom</code> keep my comments, or is there some other standard way of annotating this?</p> http://stackoverflow.com/questions/1480572/how-to-have-emacs-auto-refresh-all-buffers-when-files-have-changed-on-disk 4 How to have emacs auto-refresh all buffers when files have changed on disk Dave 2009-09-26T06:25:56Z 2009-09-26T17:33:29Z <p>I have a non-emacs global search and replace function that causes my disk files to become more up-to-date than my emacs buffers (en masse). Is there any way to tell emacs to refresh all the buffers from disk in one fell swoop, instead of having to do each one individually by reloading the file?</p> <p>Thanks! D</p> http://stackoverflow.com/questions/1427660/gdb-not-showing-code-within-emacs-on-windows 0 gdb not showing code within emacs on Windows Stephen Burke 2009-09-15T14:48:58Z 2009-09-21T19:54:54Z <p>I asked a question just yesterday which caused this new issue. <a href="http://stackoverflow.com/questions/1424231/gdb-within-emacs-on-windows">http://stackoverflow.com/questions/1424231/gdb-within-emacs-on-windows</a> </p> <p>Basically I was installing a QT sdk which asked me to uninstall MSYS which I did &amp; I hosed my emacs/gdb interaction. </p> <p>Here is the gdb_init file that I'm using. Before the uninstall of MSYS this worked fine. Now after it, the breakpoints are working but I am not getting my code in another window with the little red dot on the left margin for a breakpoint. </p> <pre><code>file ~/../sandbox/trunk/current-win32/debug-bin/sm.exe dir ~/../sandbox/trunk/src/mgr/view dir ~/../sandbox/trunk/src/mgr/view/appstatus dir ~/../sandbox/trunk/src/mgr/controller break widget.cpp:176 break book.cpp:72 break TcpClient.cpp:660 break mainwidget.cpp:1474 </code></pre> <p>The steps I'm running in emacs</p> <pre><code>M-x gdb source ~/gdb_init run (It will break but not give me the code along with the breakpoint) </code></pre> <p>Any ideas what I'm doing wrong? </p> http://stackoverflow.com/questions/1424231/gdb-within-emacs-on-windows 1 gdb within emacs on Windows Stephen Burke 2009-09-14T22:31:51Z 2009-09-15T00:11:09Z <p>I'm running Emacs 22.3 in Windows. Earlier today I had gdb working within Emacs just fine. I was installing QT4 and during the installation it asked me to uninstall MSYS which I quickly clicked through not thinking about things. I think I had gdb installed with the MSYS package and Emacs was using that, but I'm not completely sure. Now when I run the following I get an error in the mini-buffer.</p> <pre><code>M-x gdb "Searching for program: no such file or directory, gdb" </code></pre> <p>I tried to add the path "<code>C:\cygwin\bin</code>" to the Emacs load-path with this code but I still get the same error. </p> <pre><code>(message "Adding cygwin/bin to load path.") (add-to-list 'load-path "c:/cygwin/bin") </code></pre> <p>Could someone tell me what I'm doing wrong?<br /> Thanks. </p> http://stackoverflow.com/questions/589691/how-can-i-emulate-vims-search-in-gnu-emacs 8 How can I emulate Vim's * search in GNU Emacs? rq 2009-02-26T08:49:36Z 2009-09-02T19:19:07Z <p>In Vim the * key in normal mode searches for the word under the cursor. In GNU Emacs the closest native equivalent would be:</p> <pre><code>C-s C-w </code></pre> <p>But that isn't quite the same. It opens up the incremental search mini buffer and copies from the cursor in the current buffer to the end of the word. In Vim you'd search for the whole word, even if you are in the middle of the word when you press *.</p> <p>I've cooked up a bit of elisp to do something similar:</p> <pre><code>(defun find-word-under-cursor (arg) (interactive "p") (if (looking-at "\\&lt;") () (re-search-backward "\\&lt;" (point-min))) (isearch-forward)) </code></pre> <p>That trots backwards to the start of the word before firing up isearch. I've bound it to C-+, which is easy to type on my keyboard and similar to *, so when I type <code>C-+ C-w</code> it copies from the start of the word to the search mini-buffer.</p> <p>However, this still isn't perfect. Ideally it would regexp search for <code>"\&lt;" word "\&gt;"</code> to not show partial matches (searching for the word "bar" shouldn't match "foobar", just "bar" on its own). I tried using search-forward-regexp and concat'ing \ but this doesn't wrap in the file, doesn't highlight matches and is generally pretty lame. An isearch-* function seems the best bet, but these don't behave well when scripted.</p> <p>Any ideas? Can anyone offer any improvements to the bit of elisp? Or is there some other way that I've overlooked?</p> http://stackoverflow.com/questions/1072364/how-to-set-cscope-database-set-init-directory 0 How to set Cscope->database-> Set init directory n179911 2009-07-02T03:43:17Z 2009-08-29T15:00:02Z <p>Hi,</p> <p>I am using xcode with emacs. But everytime I start emacs, I need to go to menu 'CScope' -> Cscope->database -> set init Directory and it pick the root directory of my source. </p> <p>And then I click 'CScope' -> Cscope->database -> set init Directory->create list and index'</p> <p>Is there anyway I can configure that in .emacs so that I don't need to do that every time i start emacs?</p> <p>Thank you.</p> http://stackoverflow.com/questions/154097/whats-in-your-emacs 20 What's in your .emacs? A. Rex 2008-09-30T17:27:08Z 2009-08-06T01:58:46Z <p>I've switched computers a few times recently, and somewhere along the way I lost my .emacs. I'm trying to build it up again, but while I'm at it, I thought I'd pick up other good configurations that other people use.</p> <p>So, if you use Emacs, what's in <i>your</i> .emacs?</p> <p>Mine is pretty barren right now, containing only:</p> <ol> <li>Global font-lock-mode! <code>(global-font-lock-mode 1)</code></li> <li>My personal preferences with respect to indentation, tabs, and spaces.</li> <li>Use cperl-mode instead of perl-mode.</li> <li>A shortcut for compilation.</li> </ol> <p>What do you think is useful?</p> http://stackoverflow.com/questions/1217180/how-do-i-byte-compile-everything-in-my-emacs-d-directory 4 How do I byte-compile everything in my .emacs.d directory? Irwin1138 2009-08-01T18:34:01Z 2009-08-03T02:45:37Z <p>I have decided to check out Emacs, and I liked it very much. Now, I'm using the <a href="http://github.com/technomancy/emacs-starter-kit/tree/master" rel="nofollow">Emacs Starter Kit</a>, which sort of provides better defaults and some nice customizations to default install of Emacs.</p> <p>I have customized it a little, added some stuff like <a href="http://code.google.com/p/yasnippet/" rel="nofollow">yasnippet</a>, <a href="http://www.nongnu.org/color-theme/" rel="nofollow">color-themes</a>, <a href="http://www.emacswiki.org/emacs/unbound.el" rel="nofollow">unbound</a>, and other stuff. I've set up a <a href="http://github.com/Irwin1138/emacs-starter-kit/tree/master" rel="nofollow">github repository</a> where I keep all of the customizations so I can access them from multiple places or in case something goes bad and I lose my .emacs.d directory.</p> <p>All of this is very nice, but there is a problem: Emacs takes about 1-2 seconds to load. AFAIK I can compile individual .el files with M-x byte-compile-file to .elc, and it works. But there are a lot of .el files, and I wonder if there is a way to compile them all with a simple command or something, to speed up the loading of Emacs. My Emacs is not always open, and I open and close it quite frequently, especially after I've set it up as a default editor for edit command in Total Commander to get used to it faster (yeah, windows xp here).</p> <p>My Emacs version is 22.3. And yes, the default Emacs installation without any customizations fires up instantly.</p> <p>I am not sure which version is preferred when loading, the .el or compiled .elc one by the way O.o</p> <p>So, is there an elisp command or Emacs command line switch to make Emacs byte-compile everything in .emacs.d directory?</p> http://stackoverflow.com/questions/1149088/how-do-i-pass-a-function-as-a-parameter-in-emacs 1 How do I Pass a Function as a Parameter in Emacs? Cristian 2009-07-19T02:18:54Z 2009-07-19T02:21:28Z <p>I'm trying to add a function I created to a hook, but the obvious (to my Schemer mind) way doesn't seem to work. The function is used in 2 places and I want to keep my code DRY so no anonymous function. Though I could wrap my function in a lambda, there must be a better way.</p> <p>Doesn't work:</p> <pre><code>(defun my-function () ;; do my stuff) (add-hook 'some-hook-list my-function) </code></pre> <p>I get the error message:</p> <blockquote> <p>Symbol's value as variable is void: my-function</p> </blockquote> http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars 0 xemacs: dotemacs config so that one can paste without getting "funny" chars jd 2009-05-29T22:15:43Z 2009-06-17T03:29:22Z <p>Copying text from websites via browser, paste into xemacs (21.4) buffer, and tildes, quotes, etc. don't copy correctly. </p> <p>Example: he’s a dummy -> he\222s a dummy. </p> <p>Can YOU copy &amp; paste it without problems? If so, please help - how to config my .emacs to solve this. Thanks.</p> http://stackoverflow.com/questions/993707/bazaar-how-put-files-from-different-locations-in-one-repository 0 Bazaar: how put files from different locations in one repository? pesche 2009-06-14T20:38:05Z 2009-06-15T09:35:42Z <p>I'm new to bazaar and would like to give it a try by storing my Emacs configuration files in one repository.</p> <p>These files consist of a .emacs file in my home directory (on unixish systems) and a couple of Emacs Lisp source files in /usr/local/share/emacs/site-lisp</p> <p>I'd really like to have one repo because some changes in my .emacs file go together with changes in other files.</p> <p>What I couldn't work out from the manual is how to get these files together. The "bzr init" takes recursively all files from the current directory; for my situation this would mean to create the repo in the root directory...</p> <p>What do you recommend? Try working with symbolic links? Is there a way to associate a revision from one repo to one from another repo, so that easier solution of having two separate repos could be a way to go?</p> <p>There is an additional challenge: on a Windows machine, these Emacs files sit on completely different locations. How to treat that?</p> <p>I have some perforce experience: there the solution is easy: you can just define a view that maps repo files to an arbitrary location on your hard disk.</p> http://stackoverflow.com/questions/905001/disabling-transient-mark-mode 2 Disabling transient-mark-mode Nathaniel Flath 2009-05-25T00:59:19Z 2009-05-29T15:06:24Z <p>In my .emacs file, I have </p> <pre><code>(setq transient-mark-mode nil) </code></pre> <p>and yet transient-mark-mode is activated when I start up emacs. Calling transient-mark-mode gives the message 'transient-mark-mode disabled', but C-space still starts highlighting a region. Is there a way to turn this off?</p> http://stackoverflow.com/questions/898401/how-to-get-focus-follows-mouse-over-buffers-in-emacs 5 how to get focus-follows-mouse over buffers in emacs? numerodix 2009-05-22T15:13:32Z 2009-05-23T19:40:05Z <p>Suppose I have a source file open and I launch a shell. I can hit C-x o to switch between the two buffers. But how can I get it so that when I move the mouse the buffer under the mouse gets focus, just like the "focus follows mouse" option common in window managers?</p> http://stackoverflow.com/questions/864892/how-do-i-find-which-emacs-file-has-been-loaded 3 How do I find which .emacs file has been loaded? Silfheed 2009-05-14T18:17:50Z 2009-05-14T19:47:00Z <p>Heyas</p> <p>How do I get emacs to tell me the location of the .emacs file it has loaded?</p> <p>My situation is simply when I do <code>sudo emacs</code>, it loads up a very different .emacs file than the one in my home directory. I can get around with by doing <code>M-x eval-buffer</code> on my own .emacs file, but that's a lot of extra steps, plus it doesnt seem to clear out the goofy binds in whatever .emacs file is being loaded. If anything, I'd simply like to find the .emacs file and remove some of the stranger binds (c-n, c-p, c-a all rebound to strange stuff)</p> <p>My main question is still, how do I get emacs to tell me the location of the .emacs file it has loaded?</p> http://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep 2 Disable Carbon Emacs scroll beep Kyle Cronin 2008-11-27T18:38:22Z 2009-04-08T22:52:39Z <p>I've been looking into adopting Carbon Emacs for use on my Mac, and the only stumbling block I've run into is the annoying scroll beep when you try to scroll past the end of the document. I've looked online but I can't seem to find what I should add to my .emacs that will stop it from beeping when scrolling. I don't want to silence it completely, just when scrolling. Any ideas?</p> http://stackoverflow.com/questions/568150/tips-for-profiling-misbehaving-emacs-lisp 10 Tips for profiling misbehaving Emacs lisp? EnigmaCurry 2009-02-20T03:17:10Z 2009-03-19T12:26:26Z <p>I customize Emacs a lot. Recently, I added something to my .emacs configuration that sporadically pegs my CPU at 100%, but I really don't know what it is. </p> <p>If I press C-g a bunch of times, eventually I'll get a message <em>below</em> the minibuffer asking me if I want to auto save my files and then if I want to abort emacs entirely. If I keep saying no and keeping pressing C-g, eventually I can get back to running emacs as normal. An hour or so later it will happen again.</p> <p>I could keep going about like I am, commenting out various things I've added recently, restarting emacs, trying to narrow down the culprit, but it's slow going.</p> <p><strong>Is there a way I can profile emacs directly to figure out what lisp function is hogging the CPU?</strong></p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size 5 Programmatically setting Emacs frame size J Cooper 2008-12-02T21:18:50Z 2009-02-26T10:34:33Z <p>My emacs (on Windows) always launches with a set size, which is rather small, and if I resize it, it's not "remembered" at next start-up. </p> <p>I've been playing with the following:</p> <pre><code>(set-frame-position (selected-frame) 200 2) ; pixels x y from upper left (set-frame-size (selected-frame) 110 58) ; rows and columns w h </code></pre> <p>which totally works when I execute it in the scratch buffer. I put it in my .emacs, and although now when I start the program, I can see the frame temporarily set to that size, by the time <code>*scratch*</code> loads, it resets back to the small default again. </p> <p>Can anyone help me fix up the above code so that it "sticks" on start-up?</p> http://stackoverflow.com/questions/557282/in-emacs-whats-the-best-way-for-keyboard-escape-quit-not-destroy-other-windows 2 in emacs, what's the best way for keyboard-escape-quit not destroy other windows? polyglot 2009-02-17T15:15:03Z 2009-02-17T19:56:34Z <p><strong>EDIT:</strong> I understand there is keyboard-quit (which is normally bounded to C-g); but I'm more interested to know about how one deals with editing functions that come with Emacs (like in this case). I run into this kind of situations from time to time when I want to change just a little bit of some build-in functions.</p> <p>In emacs, when you hit M-ESC ESC (or ESC three times), you can get out of a lots of situations like transient-mark, etc. But I habitually hit the escape key (I actually remap this to a single hit of the escape key) more than I intended, and that ends up killing my windows configuration, which is quite annoying. The function keyboard-escape-quit is defined in simple.el:</p> <pre><code>(defun keyboard-escape-quit () "Exit the current \"mode\" (in a generalized sense of the word). This command can exit an interactive command such as `query-replace', can clear out a prefix argument or a region, can get out of the minibuffer or other recursive edit, cancel the use of the current buffer (for special-purpose buffers), or go back to just one window (by deleting all but the selected window)." (interactive) (cond ((eq last-command 'mode-exited) nil) ((&gt; (minibuffer-depth) 0) (abort-recursive-edit)) (current-prefix-arg nil) ((and transient-mark-mode mark-active) (deactivate-mark)) ((&gt; (recursion-depth) 0) (exit-recursive-edit)) (buffer-quit-function (funcall buffer-quit-function)) ((not (one-window-p t)) (delete-other-windows)) ((string-match "^ \\*" (buffer-name (current-buffer))) (bury-buffer)))) </code></pre> <p>And I can see that I don't want the lines:</p> <pre><code> ((not (one-window-p t)) (delete-other-windows)) </code></pre> <p>But what is the best way to modify this function? I can see only two ways: 1) modify simple.el 2) copy this function to my .emacs file and do the modifications there. Both ways are not really <em>good</em>; ideally I would like to see something on the line of defadvice, but I can't see how I can do it in this case.</p> http://stackoverflow.com/questions/515946/emacs-navigation-in-new-versions-acts-like-notepad 5 Emacs navigation in new versions acts like notepad Chris R 2009-02-05T13:49:09Z 2009-02-06T20:53:27Z <p>This is a bit difficult to explain, so please bear with me.</p> <p>I am running emacs 23.0.60.2 (from CVS) in order to have truetype support. (in case anyone wonders why I'm running the bleeding edge). I'm experiencing some oddness in navigation within documents with this version that I want to have STOP.</p> <p>When a window is narrow enough that a long line wraps, it used to be that navigating down one line in the text would move the cursor to the next literal line in the file at the same offset into the line. Now, however, the cursor is moved to the next logical line in the window -- which is the continuation of the current line -- at the same relative offset from the window edge. Basically, before it was emacs-like and now it's notepad-like. I don't want notepad-like behaviour.</p> <p>Does anyone know how to turn this off? Bonus points if you know how to turn it off in .emacs in such a way as to have my .emacs continue to work with emacs 21-22 as well :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/476384/try-catch-block-indentation-in-emacs 2 try catch block indentation in emacs Stephen Burke 2009-01-24T17:40:16Z 2009-01-24T19:02:13Z <p>I'm using the bsd style of indentation in emacs &amp; I'd like to modify it a bit. The related portion of my .emacs file is below. When I write a function with try catch blocks the braces are indented. I'd like them to not indent similar to a function.</p> <p>What's it's doing now. </p> <pre><code>try { } catch { } </code></pre> <p>What I'd like it to do. </p> <pre><code>try { } catch { } </code></pre> <p>.emacs file</p> <pre><code>(defun my-c-mode-common-hook () ;; my customizations for all of c-mode and related modes ;; other customizations can go here (setq c-default-style "bsd") (setq c-basic-offset 4) (setq indent-tabs-mode nil) ) (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) </code></pre> <p>Any help would be appreciated. </p> http://stackoverflow.com/questions/392314/saving-window-configurations-in-emacs 2 Saving Window Configurations in Emacs dnolen 2008-12-24T22:58:55Z 2008-12-25T02:45:10Z <p>I'm wondering if there's a way to save window configurations across emacs sessions. I know desktop-save is fantastic for preserving buffers and whatnot and the emacs manual demonstrates storing a window configuration into a register but this doesn't persist across sessions.</p> <p>Of course this doesn't seem like it would be too hard to implement myself...</p>