active questions tagged emacs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:54:50Z http://stackoverflow.com/feeds/tag/emacs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879933/r-cmd-check-complains-about-unexpected-files-in-man 0 R CMD check complains about unexpected files in man mariotomo 2009-12-10T09:53:43Z 2009-12-10T09:53:43Z <p>this sounds like a silly problem: I'm putting my R code into a package and <code>R CMD check src</code> complains about the .Rd~ backup files being produced by Emacs. </p> <pre><code>* checking package subdirectories ... WARNING Subdirectory 'man' contains invalid file names: read.PI.Rd~ write.PI.Rd~ </code></pre> <p>the documentation says: »In addition [...] files [...] with base names [...] ending in ‘~’, ‘.bak’ or ‘.swp’, are excluded by default.« (page 18). but then why the warning?</p> http://stackoverflow.com/questions/1878129/how-do-i-hide-number-of-links-in-dired 0 How do I hide number of links in dired? Christopher Monsanto 2009-12-10T01:32:53Z 2009-12-10T06:44:48Z <p>99.9% of the time, I don't care how many links are pointing to a file. How do I get dired (or alternatively, ls) to not display the number of links?</p> <p>For reference, the output of ls -l is something like:</p> <pre> -rw-rw-rw- 1 root dir 104 Dec 25 19:32 file </pre> <p>The number of links, in this case, is 1. ls has a flag to remove the group number (104) but not one to remove the number of links, from what I can tell.</p> <p>I'm afraid editing the format will screw up dired's parsing, as ls has a special flag for producing output to dired. </p> http://stackoverflow.com/questions/1856203/windows-and-minibuffer-floating-over-the-frame 0 Windows and Minibuffer floating over the frame konr 2009-12-06T18:48:09Z 2009-12-10T02:02:24Z <p>Hi!</p> <p>When I start Emacs, its windows and its minibuffer start up floating on the main frame, leaving a lot of empty space (see: <a href="http://scorciapino.com/pub/fotos/erroemacs.jpg" rel="nofollow">here</a> and <a href="http://scorciapino.com/pub/fotos/erroemacs2.jpg" rel="nofollow">here</a>). Any idea of what is going on and how to fix it?</p> <p>I'm using emacs version 23.1.1 on Xmonad</p> <p>Thanks!</p> http://stackoverflow.com/questions/1824256/setting-different-c-basic-offs-for-different-projects 1 Setting different c-basic-offs for different projects ZelluX 2009-12-01T05:59:13Z 2009-12-10T00:06:57Z <p>Hi, all</p> <p>I usually use 4 white spaces to indent C programs, but in order to keep in consistent with some open source projects, I have to change to 2-white-space indenting sometimes.</p> <p>Currently my indenting style is assigned in my .emacs file with </p> <pre><code>(setq c-basic-offset 4) </code></pre> <p>And when I want to work on those 2-white-space indenting projects. I have to close my Emacs, modify the value, and start again. Is there any simpler way to do this?</p> <p>Many thanks.</p> <p><hr></p> <p>PS. Setting c-basic-offset variable every time I open a source file is too much work, is it possible to choose different value depending on working directory?</p> http://stackoverflow.com/questions/1877612/how-can-i-tell-if-a-file-has-the-windows-hidden-bit-in-emacs 2 How can I tell if a file has the Windows "hidden bit" in Emacs? Christopher Monsanto 2009-12-09T23:14:19Z 2009-12-09T23:53:12Z <p>I use Emacs on various platforms. When I use it on Windows, I don't want files with the "hidden attribute" to show on ido-find-file, dired, etc. I can't seem to find any function in Emacs that can tell me whether a file has the hidden bit or not (file-attributes doesn't seem to, from the help page).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1877103/how-can-i-get-more-colors-in-emacs-vc-diff 1 How can I get more colors in emacs vc-diff? Serbaut 2009-12-09T21:41:25Z 2009-12-09T22:42:35Z <p>I would like to have vc-diff colorize the output so that added lines are in one color and deleted ones in another. Using Emacs 23.1 and putty/xterm-256color (list-colors-display shows 256 colors and color themes and such works as expected).</p> <p>This is how it looks right now:</p> <p><img src="http://i49.tinypic.com/11vsj9t.gif" alt="alt text"></p> http://stackoverflow.com/questions/1826070/how-can-i-set-the-encoding-of-shell-command-on-region-output 1 How can I set the encoding of shell-command-on-region output? rassie 2009-12-01T13:01:52Z 2009-12-09T21:56:21Z <p>I have a small elisp script which applies Perl::Tidy on region or whole file. For reference, here's the script (borrowed from EmacsWiki):</p> <pre><code>(defun perltidy-command(start end) "The perltidy command we pass markers to." (shell-command-on-region start end "perltidy" t t (get-buffer-create "*Perltidy Output*"))) (defun perltidy-dwim (arg) "Perltidy a region of the entire buffer" (interactive "P") (let ((point (point)) (start) (end)) (if (and mark-active transient-mark-mode) (setq start (region-beginning) end (region-end)) (setq start (point-min) end (point-max))) (perltidy-command start end) (goto-char point))) (global-set-key "\C-ct" 'perltidy-dwim) </code></pre> <p>I'm using current Emacs 23.1 for Windows (EmacsW32). The problem I'm having is that if I apply that script on a UTF-8 coded file ("U(Unix)" in the status bar) the output comes back Latin-1 coded, i.e. two or more characters for each non-ASCII source character.</p> <p>Is there any way I can fix that?</p> <p><strong>EDIT</strong>: Problem seems to be solved by using <code>(set-terminal-coding-system 'utf-8-unix)</code> in my <code>init.el</code>. In anyone has other solutions, go ahead and write them!</p> http://stackoverflow.com/questions/1876146/any-emacs-packages-available-for-browsing-databases-viewing-schemas-running-sql 0 Any emacs packages available for browsing databases (viewing schemas, running sql queries)? Dave Paroulek 2009-12-09T19:14:21Z 2009-12-09T19:15:55Z <p>I'm giving emacs a try for the first time and I was wondering if anyone has recommended strategy for connecting to databases (I regularly work with mysql, oracle, and sqlserver). I'm looking for a solution that would provide similar functionality to what phpmyadmin provides for mysql but available from within emacs. </p> http://stackoverflow.com/questions/1875646/how-do-i-change-where-my-scratch-buffer-is-saved 1 How do I change where my scratch buffer is saved? David Brown 2009-12-09T17:52:48Z 2009-12-09T18:25:44Z <p>How do I change where my scratch buffer is saved? (I ask because I rsync a couple of folders between multiple computers and would like the scratch buffer to come along for the ride.)</p> http://stackoverflow.com/questions/1874450/how-can-i-open-get-that-the-appearance-when-i-start-emacs-as-same-as-when-i-clo 1 How can i open get that the appearance when i start emacs as same as when i close it? 1.618 2009-12-09T15:01:23Z 2009-12-09T16:10:01Z <p>as same as position of windows,size,open file,etc.</p> http://stackoverflow.com/questions/1871323/using-ido-el-to-find-files-in-a-git-repository 4 Using ido.el to find files in a git repository mwilliams 2009-12-09T02:53:43Z 2009-12-09T15:02:27Z <p>I'm currently using <a href="http://github.com/defunkt/textmate.el/blob/master/textmate.el" rel="nofollow">textmate.el</a> from <a href="http://www.twitter.com/defunkt" rel="nofollow">@defunkt</a> to emulate functionality of Textmate in Emacs.</p> <p>Its equivalent of command-t to find a file in a project uses a git repository as your project (as Emacs doesn't so much have the concept of a project like Textmate does, though you could use a tags file or something along those lines).</p> <p>Textmate.el uses ido for much of its functionality but it's missing out on features in ido that I could typically benefit from when I do a simple C-x C-f, such as C-k for deleting the head file.</p> <p>As a <em>very</em> new person to Lisp, what would be my best approach, if it's not done already, to build a defun along the lines of ido-find-file-in-git-repo?</p> <p>Ultimately I would like to utilize features like C-k when in textmate-find-file to delete a file.</p> <p>Any thoughts on the best approach? Build a new ido function from scratch or refactor textmate.el?</p> <p>Working with ido.el seems pretty trivial, I think I just need a good starting point for building upon it.</p> <p>Thanks!</p> <p><strong>EDIT</strong></p> <p>Ultimately what it comes down to is being able to have the following key binding available to me in the minibuffer</p> <pre><code>(define-key map "\C-k" 'ido-delete-file-at-head) </code></pre> <p>when the following is executed and searching for files (I added some inline comments):</p> <pre><code>(defun textmate-goto-file () "Uses your completing read to quickly jump to a file in a project." (interactive) (let ((root (textmate-project-root))) (when (null root) (error (concat "Can't find a suitable project root (" (string-join " " *textmate-project-roots* ) ")"))) (find-file ;; Would this need to be changed to ido-file-file? (concat (expand-file-name root) "/" (textmate-completing-read ;; Would this need to be changed to ido-completing-read? "Find file: " (textmate-cached-project-files root)))))) </code></pre> http://stackoverflow.com/questions/1873803/using-one-key-for-both-flymake-and-flyspell 0 Using One Key for Both flymake And flyspell Nikwin 2009-12-09T13:15:34Z 2009-12-09T13:15:34Z <p>I am using flymake with pyflakes to check my python code and flyspell to check my strings and comments. I want to have one function which will go to the next error, or will display information about the error if currently at an error. How would I write this function?</p> http://stackoverflow.com/questions/1871939/my-emacss-m-x-key-is-bad-can-you-help-me 0 My emacs's M-x key is Bad. Can you help me? [closed] 1.618 2009-12-09T06:21:27Z 2009-12-09T08:17:22Z <p>My emacs's M-x key is failure.What's the matter?</p> http://stackoverflow.com/questions/1872051/emacs-navigation-in-non-truncate-mode 0 Emacs: Navigation in non-truncate mode Sahasranaman MS 2009-12-09T06:45:21Z 2009-12-09T06:58:11Z <p>Hi,</p> <p>I'm editing a file with very long lines in Emacs. I've turned on line truncating, and I want to quickly see the last words in each line quickly.</p> <p>So I move to the end of the first line, then when I press C-n it takes me to the next line and the horizontal position is not lost. But when I do C-v, it takes me to the beginning of first line in the next page i.e., the horizontal position is getting lost. </p> <p>Is there a workaround for this?</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1871970/emacs-execute-code-in-shell-script-mode 1 Emacs: Execute code in shell-script mode Sahasranaman MS 2009-12-09T06:27:03Z 2009-12-09T06:35:04Z <p>Hi all,</p> <p>In sh-mode in Emacs, I was looking for a way to execute a shell script in the current buffer directly like the C-c C-c in Python-mode. Using M-! is really tiring. Any amount of googling doesn't help. Is this possible? </p> <p>Please help.</p> <p>Thanks</p> http://stackoverflow.com/questions/1869305/guide-to-switch-from-visual-studio-to-emacs-on-windows 0 Guide to switch from Visual Studio to Emacs on windows? KaluSingh Gabbar 2009-12-08T19:33:24Z 2009-12-09T01:00:40Z <p>I do not want to learn an IDE or similar software which is only made for one platform only. I want to spend my time+energy in learning something which is a timeless-truth.</p> <p>I want to switch to an editor-religion, which has no religion but of development and progress, it sees &amp; treats all with equality. </p> <p>Yes, please provide me some guide about how to switch to <strong>Emacs</strong> on windows. like, doing compiler settings, source setting, TFS binding ...and all things I do not know about. </p> <p>PS most of (all) my code is in C++ (unmanaged)</p> http://stackoverflow.com/questions/1856671/configure-flymake-to-use-specific-directory-for-temp-files 2 Configure flymake to use specific directory for temp files? quodlibetor 2009-12-06T21:27:39Z 2009-12-08T21:10:17Z <p>I've been looking through the documentation and tried customizing and a variety of things, but no matter what I do it seems like Flymake just always places its temporary files into whatever directory the original file is in.</p> <p>The main reason this is a big deal is because when I'm stepping through my programs using gdb, sometimes I step into an STL file, or other file in a non-user directory. Frequently this causes my gdb process to stop responding for some reason, which means that I have to go all the way back to the beginning and either globally disable Flymake or hope that I don't have to do another find-file in a dir that my emacs process doesn't have write access to.</p> <p>Is there a good way to get flymake to always generate its temporary files in e.g. <code>~/.emacs.d/tmp</code>?</p> http://stackoverflow.com/questions/1868807/elisp-function-returning-mark-instead-of-the-right-value 2 Elisp function returning mark instead of the right value Paul Nathan 2009-12-08T18:10:19Z 2009-12-08T21:05:22Z <p>I'm writing a routine to test to see if point is at the practical end of line. </p> <pre><code>(defun end-of-line-p () "T if there is only \w* between point and end of line" (interactive) (save-excursion (set-mark-command nil) ;mark where we are (move-end-of-line nil) ;move to the end of the line (let ((str (buffer-substring (mark) (point)))) ;; does any non-ws text exist in the region? return false (if (string-match-p "\W*" str) t nil)))) </code></pre> <p>The problem is, when running it, I see "mark set" in the minibuffer window, instead of T or nil.</p> http://stackoverflow.com/questions/1868892/emacs-c-mode-highlighting-casts-malloc-and-sizeof 1 Emacs C++ Mode: Highlighting Casts, Malloc and Sizeof John Bellone 2009-12-08T18:23:36Z 2009-12-08T18:23:36Z <p>I am using the standard (shipped) Emacs C++ mode but I have a slight itch that I am looking to get scratched. How would I go about properly highlighting the types inside of a <em>sizeof</em> and the <em>casts</em> in C++?</p> <p>For example:</p> <ol> <li><p><strong>A Cast</strong></p> <p><code>Type * pointer = reinterpret_cast &lt;Type *&gt; (original);</code></p></li> <li><p><strong>Sizeof</strong></p> <p><code>std::cout &lt;&lt; sizeof (Type) &lt;&lt; "\n";</code></p></li> </ol> http://stackoverflow.com/questions/1855890/viper-mode-in-all-modes 3 Viper mode in all modes konr 2009-12-06T17:03:07Z 2009-12-08T15:12:48Z <p>Hi!</p> <p>I'm moving from vi to emacs and, using viper and vimpulse, it gets pretty annoying when I <code>C-w C-w</code> to a window and cannot get back to the original one with the same command because the other buffer, which could be a help buffer, is not in the Viper mode. How can I fix this?</p> <p>I tried to add other modes to the viper configuration and make them start with the viper mode on by default using hooks:</p> <pre>(add-to-list viper-vi-state-mode-list 'help-mode) (add-hook 'help-mode '(lambda () (setq viper-mode t)))</pre> But none of these commands did work. In fact, the first one yielded the following error: <pre> Warning (initialization): An error occurred while loading `/home/konrad/.emacs.d/init.el': Wrong type argument: symbolp, (fundamental-mode ... </pre> <p>Besides the <code>C-w C-w</code>, I also miss not being able to navigate using hjkl. Isn't there a way to reuse the keybindings set by viper, instead of rebinding them again for every mode?</p> http://stackoverflow.com/questions/1866934/execute-code-in-emacs-file-only-for-command-line-version-of-emacs 2 Execute code in .emacs file only for command line version of Emacs? marcwan 2009-12-08T13:21:38Z 2009-12-08T13:40:32Z <p>Hello!</p> <p>I'm running Carbon Emacs on Macs here, and my GUI emacs has an extremely pleasing colour scheme set up to use. Unfortunately, it looks like hell when running "emacs" in a Terminal window, which parses the same .emacs file in my root folder.</p> <p>So, is there a way to conditionally execute code in my .emacs file so that I can select a different colour scheme for command line and "GUI" emacs?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1859798/how-can-i-convert-hexadecimal-to-decimal-numbers-in-calc-of-emacs 1 How can I convert hexadecimal to decimal numbers in calc of Emacs? 1.618 2009-12-07T12:54:02Z 2009-12-08T13:40:06Z <p>How can I convert hexadecimal to decimal numbers in Emacs calc? For example, if I enter <code>FF</code>, I want it to convert it to <code>255</code>.</p> <p>UPDATE: How do I get the reverse operation, turn base 10 to base 16?</p> http://stackoverflow.com/questions/1864662/rebinding-c-c-to-c-c 1 Rebinding C-c to C-c konr 2009-12-08T04:48:42Z 2009-12-08T13:31:17Z <p>Hi!</p> <p>I'm using Viper, and I want to change its <code>C-c</code> and <code>C-g</code> to the original emacs functions. I can rebind <code>C-g</code> with <code>(define-key viper-vi-global-user-map "C-g" 'keyboard-quit)</code>, but how can I rebind <code>C-c</code>, since it's a prefix key?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1862901/how-to-use-emacs-with-python 0 How to use Emacs with Python Tony Cruise 2009-12-07T21:09:35Z 2009-12-08T12:36:26Z <p>I am new to emacs and I want to use emacs for python development. I am using Ubuntu 9.10. I frustrated to getting emacs work with python. I use GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0).</p> <p>Here what I did. * </p> <p>Emacs come with python mode but it is confusing there are two types of mode one is python-mode.el and other one is python.el. I use emacs 23 so mine is python.el (I think). Do I need python-mode too? Code completion does not work when I press M-Tab , instead of it window manager works. I tried Esc-Tab but it says "No match" . How can I enable code completion?</p> <p>After that I installed ropemacs</p> <pre><code>sudo aptitude install python-ropemacs </code></pre> <p>Then I created .emacs file at ~/.emacs and I added followings to .emacs file</p> <pre><code>(require 'pymacs) (pymacs-load "ropemacs" "rope-") (setq ropemacs-enable-autoimport t) </code></pre> <p>Then when I hit M-/ (Alt-/) it doesn't work when I cick from the menu Rope->Code assist it opens a file dialog for choosing root project folder. I choose current folder which has there are some python code. When I try again Code assist from menu it says "Completion for x: " nothing but empty set. How can make emacs python code completion work?</p> <p>Then I downloaded <a href="http://www.emacswiki.org/emacs/anything.el" rel="nofollow">anything.el</a>, anything-config, anything-match-plugin to ~/.emacs.d folder Then I added following lines to .emacs file</p> <pre><code>(require 'anything-config) (require 'anything-match-plugin) (global-set-key "\C-ca" 'anything) (global-set-key "\C-ce" 'anything-for-files) </code></pre> <p>Guess what it didnt work. I tried "M-x anything" again I get No match.(I guessed may me combination of C-ca (First control-a then e ) might work it says it isnt defined). Could you explain code completion for python with clear explanations (step by step) to someone dummy as me. Thanks. Edit: I able emacs work with python with the link. Thanks all for answering</p> http://stackoverflow.com/questions/1855117/which-version-control-system-or-platform-is-the-best-one-for-tracking-and-distrib 2 Which version control system or platform is the best one for tracking and distributing personal Emacs configurations? Achim 2009-12-06T11:23:53Z 2009-12-08T09:13:41Z <p>I currently use subversion to track my configuration changes of Emacs and to sync my '.emacs.d' directory to different platforms.</p> <p>A lot of packages like Ido, Muse or Org-mode are part of Emacs distributions which come with Debian or Carbon Emacs (osx). But other packages which I'm also using are not part of those distributions so I have to add them to my personal subversion repository manually.</p> <p>The advantage is that I'm now able to check out my whole '.emacs.d' configuration wherever I want to work. The disadvantage is that I have to track those packages for updates and every time a new update is available I have to update my own repository manually.</p> <p>Is there is a better way to integrate my own configurations and packages with those of the 'community'? I realized that github.com is used by many people for that reason.</p> <p>Should I better use git instead of subversion to sync and share my Emacs configurations with that of the community? And does that mean that I should better switch to github.com instead of using my own subversion server to get closer to other Emacs users regarding exchange and distribution?</p> http://stackoverflow.com/questions/1743507/referring-to-ms-windows-special-folders-in-emacs 1 Referring to MS Windows special folders in Emacs rutger 2009-11-16T17:10:12Z 2009-12-08T07:22:35Z <p>Is there a simple way to find a file on my desktop in Emacs? Instead of going the "C:\Documents and Settings\MyName\Desktop\" way...</p> <p>Maybe there is a way to define aliases in my .emacs which I can use during find-file?</p> http://stackoverflow.com/questions/1854214/how-do-i-keep-emacs-org-mode-from-splitting-windows 1 How do I keep Emacs org-mode from splitting windows? unknown (google) 2009-12-06T03:05:31Z 2009-12-06T23:23:25Z <p>I'm a new emacs user using emacs for the awesome org-mode. I have links to all my org files at the top of my pages but everytime I click a link it splits my window, so I only have half of the screen estate available. How do I set it so that emacs does not split the window horizontally but rather opens up a new window for my links?</p> http://stackoverflow.com/questions/1852812/saving-all-modified-buffers-in-emacs-but-not-one-by-one 0 saving all modified buffers in emacs, but not one by one RamyenHead 2009-12-05T17:28:33Z 2009-12-06T14:13:47Z <p>When I press <code>C-x s</code> or <code>C-x C-c</code>, emacs displays the names of modified buffers one by one and asks what to do with each (save, diff, pass, ...). Pressing y one by one is slow. Pressing ! doesn't let you see what buffers are being saved.</p> <p>How can I have the names of all modified buffers displayed first so that I can mark off some of them and save all the other quickly?</p> http://stackoverflow.com/questions/1854573/kill-the-associated-buffer-when-close-the-emacs-client-frame-by-pressing-altf4 0 kill the associated buffer when close the emacs-client frame by pressing Alt+F4 ybyygu 2009-12-06T06:43:14Z 2009-12-06T13:31:41Z <p>I get used to emacsclient for the speedy response like vim, by putting emacs into sever mode with command "emacs --daemon". But I found it quite annoying that lots of buffers kept alive when I viewed some files and then closed them by pressing Alt+F4. I have to kill the buffer explicitly before closing the frame. </p> <p>I want to know, if there is a way to make emacsclient behave more like a lightweight GUI editor(e.g. vim) in this point?</p> http://stackoverflow.com/questions/1851390/custom-agenda-view-in-org-mode-combining-dates-and-tags 0 Custom Agenda View in Org Mode: Combining Dates and Tags Wellington Grey 2009-12-05T06:49:43Z 2009-12-06T08:18:06Z <p>I would like to create a custom agenda in org mode that will show me all the TODO items with a particular tag that are either overdue or due today.</p> <p>However, I can't find any search function that will allow me to combine the two. Am I missing something, or am I trying to use the tool incorrectly?</p>