Version 24 of the GNU Emacs text editor.
0
votes
1answer
46 views
Running emacs in emacs
I've been slowly learning elisp and new commands for emacs, and have been steadily building up my .emacs. Having to keep a console open to repeatedly open and close an instance of emacs seems ...
0
votes
0answers
15 views
Emacs24 Auctex Preview [closed]
I know many people is kind of having the same problem, nevertheless, i haven't find an answer and what I want here, is to detail the problem.
First of all, I installed auctex in two different ways, ...
1
vote
0answers
20 views
How to disable Emacs Evil selection auto-copies to clipboard
Related to this question: How to disable x paste in emacs
This works for the mouse
(setq mouse-drag-copy-region nil)
How do I do the same for Evil mode in emacs?
I'm on Mac OS, running Emacs ...
0
votes
2answers
67 views
python-mode.el not allowing indentation after if statement
I've searched all about, and all I could find was this similar isssue: improper exiting from indentation in emacs python-mode where someone is unable to exit from the proper indentation.
Whenever I ...
3
votes
1answer
62 views
macro expansion: to quote the body forms or not?
I'm having a hard time understanding exactly how macro expansion works. What is the difference in how the elisp interpreter handles these two snippets of code?
(defmacro foo (arg)
(message "arg ...
0
votes
0answers
27 views
emacs 24 gud-mi gdb questions
I am having niggling issues using Emacs v24's gud-mi interface with gdb. I hope someone here can help me out, Google hasn't been much help (probably because of very generic terms)
I use gdb in Emacs ...
0
votes
0answers
53 views
Orgmode in emacs gives an error
I created a new .org file in Emacs (24.3, windows), and it immediately gives me an error:
`flet' is an obsolete macro (as of 24.3); use either `cl-flet' or `cl-letf'.
Warning: no abbrev-file found, ...
1
vote
1answer
45 views
“value returned is unused” warning when byte-compiling a macro
Why does byte-compiling the the following produce a warning?
(defmacro foomacro (shiftcode)
`(defun foo (&optional arg)
(interactive ,(concat shiftcode "p"))
(message "arg is %i" ...
3
votes
2answers
71 views
share emacs configuration between emacs 23 and emacs 24
I'm trying to put all my emacs configuration under version control in order to easily switch between different computers. Actually my preferred system is OSX (10.8.3) with emacs 24.3 from ...
0
votes
1answer
35 views
Opening HTML file with nXhtml produces error with flymake
When I open an HTML file with emacs (and nXhtml,) I get the following error from flymake:
Error (flymake): Flymake: Failed to launch syntax check process 'xml'
with args (val
...
1
vote
0answers
38 views
How to insert the last (space-delimited) string on the line above into the current line at the cursor in emacs
While working in python I've sometimes found that I unnecessarily have a snippet like:
thing = longfunctioncall(with, many, necessary, arguments, that, take, a, fairly, long, time, to, type)
...
2
votes
2answers
47 views
Emacs: How to generate etags for coffeescript?
I just found the coffeetags tool and can confirm that it works with vim.
Is there something similar for Emacs? Has anyone managed to get etags working for Emacs with coffeescript?
0
votes
0answers
35 views
emacs sr-speedbar ubuntu - same window
I am on ubuntu. Just installed sr-speebar via marmalade. I know speedbar comes built in but I was not able using the wiki directions to get it into the same frame.
So I installed via marmalde this ...
0
votes
1answer
50 views
color theme options in emacs
I am running Emacs 24 from the terminal of my mac, when I do:
M-x load-theme
Emacs asks:
Custom theme name:
I would very much like to answer that question, but I don't know what options I ...
1
vote
2answers
29 views
Emacs: cl-loop and repeatedly calculated values
Looping in lisp can be a bit bothersome, which is greatly alleviated by the cl-loop macro. However, I find myself repeatedly writing hackish things like
(cl-loop for item in some-list
with ...
6
votes
2answers
92 views
Within emacs, how do I reference the physical screens?
I have a multi-screen display. Within emacs (GNU Emacs 24.2.1 (i386-mingw-nt6.1.7601) on Windows 7), how can I determine the number of physical screens, and cause things to happen on different ...
0
votes
2answers
49 views
M+% replacing value AND also a kill to end of line (C+k)
I'd like to search and replace, say :: and then replace all instances with a single : and a C+k
I had tried M+% then :: and lastly :C+qC+k but it just gave me ^Kactually displaying in text and ...
2
votes
1answer
36 views
emacs orgmode — how to export html file to other directory instead of the same directory with .org file
emacs 24.2.1 and org mode version 8.0.3,Although I have referred to the resolution in Emacs Org-mode - Export to another directory?, add below statement to the .org file directly. after pressing C-c ...
1
vote
1answer
44 views
Emacs: Set background color for specific window
Is it possible to set the background color of a specific emacs window?
I am using the "dedicated window" functionality to pin an emacs buffer to a frame. However, I also want that window to be ...
0
votes
1answer
29 views
Maybe monad in elisp
Here is my attempt to implement Maybe monad in elisp. It it function composition that breaks on first nil. However value is always 13. Where is my error?
(defun .compose-maybe (&rest funcs)
...
2
votes
0answers
80 views
Emacs 24: Mode-Line Style
I am trying to change the styling of the modeline in emacs 24.
I want to add an overline and an underline. Underline works fine, but overline is not working for some reason. Here is my code so far ...
0
votes
1answer
69 views
Emacs not recognising .emacs.d folder on startup
I'm new to Emacs. I recently got a dot-emacs configuration from GitHub. Cloned the repo in my home directory as .emacs.d
This is for setting up a clojure environment. When i open Emacs and enter
M-x ...
0
votes
1answer
39 views
How to run the Clojure REPL from Emacs after setting up .emacs.d folder
I'm new to Emacs so its all a bit new to me. I got a hang of the basics of Emacs like navigation,etc.
I was trying to install a Clojure REPL in Emacs, i cloned a .emacs repo and replaced .emacs with ...
-2
votes
0answers
9 views
emacs shell command wildcard suffix disregarded?
From within emacs I want to remove files ending with a certain character. I execute a shell command with M-x-! rm -f *(character). emacs doesn't seem to parse the wildcard as I would expect it but ...
1
vote
1answer
78 views
Buffer list messed up by dired-do-search in Emacs 24
The behavior of dired-do-search (A) and tags-loop-continue (M-,) has changed in Emacs 24.
If the search reaches the end of the tagged buffers, the visible buffer in Emacs 23 remained the last one in ...
0
votes
0answers
56 views
How do you set up a pure emacs layered tty stack with 256 colors and mouse support?
I use this layered tty stack to reach emacs on GNU/Linux:
Mac OS X > iTerm2 $ ssh head-node -->
$ screen $ ssh compute-node -->
$ screen $ emacs -nw
Notes:
Mac OS X = Version 10.8.2
...
0
votes
1answer
41 views
Can't find out how to solve flyspell checker to work
I'm in trouble to make flyspell to work in emacs. I'm a Mac user, but I'm not using Aquamacs, which seems to provide this facility by default.
Starting new Ispell process ...
1
vote
1answer
53 views
Is there functionality in magit, the emacs git add-on, to jump to edits?
In Jetbrains products, like IntelliJ and RubyMine, you can hit F4 in the diff window of a git diff to jump to to the current edit. Is there any functionality in Magit for emacs to go directly to a ...
4
votes
1answer
83 views
Is there emacs capability for visiting last edits?
In the JetBrains products, there's a very handy key binding that lets you visit all the spots you made an edit. Hit the key once to go to the last edit (file and location), and keep hitting the key to ...
1
vote
1answer
28 views
How to remove an intstalled package in Emacs (ver 24+)?
I'd like to remove several packages that I've installed. When I invoke packag-list-package, I notice that there is a 'd' (mark for deletion) command and an 'x' (execute). However, it seems like this ...
1
vote
1answer
54 views
how to disable background attribution in htmlize.el when exporting html
now I am using emacs 24.2.1, orgmode 8.0.2,
htmlize.el 1.47.
when exporting html with source code. such as for python. the variable is always attached with a background attribution. The highlight ...
1
vote
3answers
70 views
How to align certain text in emacs vhdl-mode
In Emacs how would I align a group of text:
signal slv4 : std_logic_vector(3 downto 0);
signal slv16 : std_logic_vector(15 downto 0);
signal slv8 : std_logic_vector(7 downto 0);
signal slv32 : ...
0
votes
3answers
66 views
how to add a <li> tag to every line automatically when exporting a HTML file in org mode
now i am using org-mode 8.0.2. recently i found it is really a waste of time,i should type
lots of repetitive <li> tags when listing a heap of items. now i just want to implement a function as ...
1
vote
1answer
50 views
Emacs 24.3: Hide/ignore “'unibyte: t' is obsolete” warnings?
I use a fair number of 3rd-party packages, and when I start emacs I get a long list of warnings in the *Warnings* buffer (which shows automatically) with the line:
Warning (mule): `unibyte: t' is ...
1
vote
1answer
33 views
How can I see the results of modifying variable ibuffer-saved-filter-groups without restarting Emacs?
I'm trying to modify the alist ibuffer-saved-filter-groups. But after I quit ibuffer and eval the setq statement, the ibuffer categories don't change when I run M-x ibuffer. The changes only get ...
0
votes
0answers
25 views
Emacs: Octave Sending lines C-c i l doesn't work
I just setup Octave on my Emacs, however I have no idea how to send lines to the Octave buffer...
After M-x run-octave
My cursor is on the line a = 1
I typed C-c i l it doesn't work..
1) C-c C-i ...
0
votes
0answers
40 views
emacs 24.2 tab-width always set to 2
I've been trying to get to work my tab-width variable, but apparently I can't with my configuration. It supposed to be working with the first two lines but nothing. And the problem is that I always ...
1
vote
1answer
79 views
Remove header information from rgrep/grep output in emacs?
This is what the buffer looks like when I run rgrep. I'd like to just see my results--all the other information is meaningless to me.
-*- mode: grep; default-directory: "~/.emacs/" -*-
Grep started ...
0
votes
0answers
7 views
Suppress mouse copy in emacs24
I've just upgraded to emacs24 (24.3.1) on Windows. I used to have mouse copy turned off but now it's on again.
Here's what's in my .emacs file that used to do the job:
;;--- No Mouse Copy, Yank, ...
4
votes
1answer
87 views
Any way to shut up some of Emacs annoying messages?
Emacs sometimes can be rather annoying, it emits too much information in minibuffer. For instance, when I run M-x gnus, it tells me that
You can run `gnus' with ...
0
votes
0answers
88 views
IPython --pylab working in emacs under windows
I am trying to get
ipython --pylab
working within emacs on windows.
I have the latest ipython.el
I am using python2.7, with the latest versions of emacs for windows.
I am using the latest distribution ...
0
votes
0answers
73 views
Is there any recommended js auto completion for emacs [closed]
I have installed js2.mode and auto complete on emacs24. now i just want a powerful plugin which could auto complete resource in js mode. can anyone give me a suggestion ?
1
vote
1answer
50 views
emacs, flyspell, deactivate “C-.” key binding
I have this little problem, I have some key bindings like so C-. C-x or C-. C-m. After I activate the flyspell-mode, I cannot use these commands. In my .emacs file I have the next 2 lines before
...
0
votes
1answer
44 views
emacs and mysql on windows 7
I have been using emacs for writing programs and recently I want to execute SQL queries through it , I run the following commands and get the following error:
M-x sql-Mysql
then I just press ...
0
votes
1answer
72 views
Disable, or, set to always no: “Options have changed — save them? (y or n)”
How, please, can I disable this prompt from appearing on exit: "Options have changed -- save them? (y or n)"
Alternatively, I'd like the answer to this particular question to always be "no" without ...
1
vote
1answer
130 views
Create a key binding for LaTeX Jump to PDF — synctex
Any ideas how to convert this into a global set key for "Jump to PDF"?
(defun aquamacs-latex-viewer-support ()
"Support for Skim as LaTeX viewer if present."
(add-to-list 'TeX-command-list
...
0
votes
1answer
64 views
Aquamacs 2.4 — subdirs.el — How to exclude a path from loading
I am setting up Aquamacs 2.4 to be used on at least three different computers and I'm uncertain how best to go about excluding a path (e.g., ...
0
votes
1answer
58 views
emacs goodies in windows [closed]
I got emacs in windows 8. I used the tabbar mode in ubuntu which came with emacs-goodies-el package. How and where do I install emacs-goodies-el in windows?
0
votes
1answer
33 views
How to define a global-set-key for M-x color-theme-<TAB> RET
I haven't been able to locate any examples of how to use global-set-key in conjunction with M-x color-theme-<TAB> RET. I've tried several variations, but to no avail. Is it possible to insert ...
0
votes
1answer
40 views
Bash: Passing a variable as argument with quotes
I'm trying to pass some arguments to ecb. But I think theres an issue with the escaping of quotes. The $edir variable below particularly is giving a lot of issues.
#!/bin/bash
...


