GNU Emacs is an extensible, customizable text editor written primarily in Emacs Lisp.
0
votes
1answer
29 views
Emacs 24.3 errors when toggling maximization
I have the following snippet in my .emacs file to toggle on and off the maximization of a given Emacs window (i.e. pane) within a frame. This code worked great until the introduction of Emacs 24.3
...
0
votes
1answer
25 views
OSX — How to define save-file-as that opens a directory tree window
I need some assistance, please, defining a save-as function that opens a directory tree instead of just giving me a path in the status bar . . . Specifically, ns-popup-save-panel is not recognized by ...
1
vote
1answer
52 views
how to replace more than one matched string in Emacs Regexp?
In Emacs Regexp, I'm doing a replace-regexp, searching for this
<span class="small">\([^<]+\)</span>\([^<]+\)<span class="small">\([^<]+\)</span>
and trying to ...
0
votes
3answers
58 views
how to match any string in Emacs regexp?
I'm referring to this page: http://ergoemacs.org/emacs/emacs_regex.html
which says that to capture a pattern in Emacs Regexp, you need to escape the paren like this: \(myPattern\).
It further says ...
0
votes
1answer
32 views
syntax for specifying matched digit string in Emacs replace-regexp?
In Emacs, I'm trying to prepend instances of digits with a text string, so that every </a>1</h2> will become </a>Chapter 1</h2> and so on.
I'm able to find matches using this ...
0
votes
1answer
46 views
Quiet mode for pdfLaTeX in emacs
I've begun to use emacs as a pdfLaTeX writer/compiler, which is just brilliant.
However, whenever I execute TeX file (C-c C-f), which currently executes the following:
(setq latex-run-command ...
0
votes
0answers
39 views
emacs: expand autocomplete for R function to include namespace
Am using EMACS/ESS as editor for R.
I find it helpful to refer to a function defined outside of base with it's relevant namespace; as well as being good practice in general, it seems to be necessary ...
1
vote
1answer
35 views
OSX / Emacs — arrow key navigation of directory tree for open / save of file
Is it possible to use the arrow keys to navigate the directory tree when opening / saving a file in OSX (Mountain Lion)? I would prefer not to use the mouse, or type the name of the folder. The ...
4
votes
1answer
90 views
Move forward over a compound statement in emacs
Is there an emacs command to move forward over a compound statement in C or C++ files?
If I have the following code
^ if (foo)
{
doSomething();
}$
and the point is at the caret (^), I want to ...
0
votes
0answers
29 views
Unexpected behavior of 'other-window' function when using ECB
I'm using the ecb package from the repository in emacs 24.3, I believe it is 2.40.
Whenever I run "ecb-activate" to get my sidebar and layout setup, the behavior of the "other-window" command changes ...
1
vote
2answers
79 views
How to run setq interactively
Specifically I want to do the same thing as (setq frame-title-format ...) would do in my config file, but from the M-x interactive command. M-x setq does not seem to work.
1
vote
1answer
48 views
Position all agenda files in tabbar group emacs
I'm using tabbar to define groups of files.
Some are in the "Emacs buffer" group, others are in the "Dired" group and all others, ATM, are in the "User buffer" group.
I would like to add another ...
2
votes
2answers
119 views
Inline code in org-mode
Markdown allows for embedded code. How can this be done in org-mode?
I know about source-code blocks:
#+begin_example
blah-blah
#+end_example
But what I want is something like this (obviously, ...
-1
votes
1answer
53 views
Is there an emacs read-only cline? [duplicate]
Is there an emacs option to read-only a file from command line?I am looking for something like vim -R filename. Best.
3
votes
1answer
79 views
js2-refactor from melpa: Package `emacs-24.1' is unavailable
I'm on GNU Emacs 24.3.50.1 (x86_64-pc-linux-gnu, GTK+ Version 3.6.0), but when I try to use package (melpa) to install js2-refactor I get this odd error:
package-compute-transaction: Package ...
0
votes
1answer
40 views
how to jump to stack trace errors from packages in compilation mode
I am trying to get Compilation mode to correctly identify source files with errors in Dart. Here is a sample stack trace.
Illegal argument(s): Id has invalid characters sample.xmi
#0 Id.Id ...
2
votes
1answer
84 views
How can I use Emacs ESS mode with R markdown?
Is there a way to configure Emacs so that it recognizes (and allows execution of) R code chunks within R markdown (.Rmd) files similar to the way it recognizes code chunks in .Rnw (Sweave) or .org ...
4
votes
1answer
56 views
Tomorrow theme for Emacs shows Chinese charaters as blocks
I installed Tomorrow theme into my Emacs24 using melpa.
Chinese characters appeared as blocks in comments while showing the correct characters in other places.
The default font in my .emacs is like ...
1
vote
1answer
51 views
How to truncate the long task name in the agenda custom view?
In emacs org-mode, I define some org-agenda-custom-commands. But some task names are too long than the screen in the Org Agenda buffer.
How to truncate the long task name in the agenda custom view?
1
vote
2answers
40 views
Aquamacs 2.4 — WordWrap / Visual Line Mode — bug workaround?
Has anyone found a workaround to the inability of Aquamacs 2.4 to correctly WordWrap at the window boundary?
The modes I use most often are text-mode and latex-mode.
I've removed the built-in hooks ...
1
vote
1answer
81 views
how to use dart-mode and d-mode together (why can't we all get along?)
I am trying to use dart-mode and d-mode in emacs 24. If I use either mode alone everything is fine. If I use both modes on each type of file respectively I get errors when trying to indent the D code. ...
0
votes
0answers
40 views
Accessing remote tags file with Emacs
I use Emacs (run natively in OSX) to edit files (mostly python code) on Ubuntu VMs. I run a VM locally, but also access code on EC2. I recently learned about exuberant-ctags and was able to ...
1
vote
1answer
31 views
How to specify X11 SouthEast gravity for Emacs X windoes?
This is currently specific to Emacs, but if there's a generic answer for X applications in general I'd love it.
Is there an X resource I can set for Emacs that will set the gravity of its main ...
2
votes
1answer
76 views
How to make the auto-complete information more compact in emacs-jedi?
I have been learning python about a month and I used emacs24.3 with jedi to write python code.
The jedi works very well, I like it very much. However, I would like to make the auto-complete menu more ...
1
vote
3answers
90 views
Force Emacs to use tabs in php mode
I want Emacs to use tabs instead of spaces in php mode.
I tried the putting the following code
;; Turn on tabs
(setq indent-tabs-mode t)
(setq-default indent-tabs-mode t)
;; Bind the TAB key
...
-2
votes
1answer
46 views
I am unable to join IRC channels from within emacs [closed]
I'm not sure what isn't working, but I run M-x irc and it brings up the usual irc buffer with a lengthy intro message. It sets my nick to my username, which isn't my irc registered nick so I then ...
0
votes
2answers
110 views
What guide should I read to start learning Emacs? [duplicate]
I don't really know if this is a decent question or not, but I am fairly new to programming and looking for a good text editor to use. I have read this question on Unix.SE and this question on SO ...
0
votes
1answer
112 views
I've rendered a shere to the Glut Window now how do I make it move around with the keyboard? [closed]
Cutting and pasting the cl-glut-examples code I rendered a sphere to the display. Now how do I move It on a x,y and z axis using the keyboard. Also is there an online resource to learn game ...
1
vote
1answer
68 views
How can I speed up Emacs DocView mode?
I'm using a fairly standard install:
Ubuntu 12.04 LTS (installed less than a week ago)
GNU Emacs 24.1
And when I open a PDF file in Emacs, it's terribly slow. There's a 2-3 second delay when ...
1
vote
1answer
111 views
Clojure Emacs Connecting to Remote REPL
When using plain repl with tramp I can navigate to a remote directory and exetute inferior-lisp and it launches a inferior-lisp process on the remote. With nrepl I can start the repl on the remote ...
0
votes
1answer
53 views
Get the VC root in Emacs Lisp
In an Emacs Lisp function, I want to know the VC root of an arbitrary folder (if under source control), the same as something like vc-print-root-log does it. I'm trying to do it from outside the VC ...
0
votes
1answer
89 views
Customizing gnus summary buffer
I want my theme to look like similar to below (code got from: http://emacswiki.org/emacs/TomRauchenwald)
However I get this, i.e my threads dont join each other. I suspect this is due to text ...
0
votes
1answer
67 views
Emacs 22.3 does not compile on Ubuntu 12.04
I downloaded emacs 22.3 from
http://ftp.gnu.org/pub/gnu/emacs/emacs-22.3.tar.gz
onto my Ubuntu 12.04.2 LTS desktop and compile/make doesn't work.
Configure seems to work fine.
Make fails very ...
1
vote
1answer
64 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 ...
2
votes
1answer
73 views
font-lock-fontify-keywords-region: Symbol's function definition is void: compilation--ensure-parse
I'm getting this error in Emacs when I attempt to run a spec test for any given Ruby file. My gem is set up in the standard way, with modules and classes in lib/, spec tests in spec/. My .emacs file ...
0
votes
1answer
30 views
How can I prevent Gnome from intercepting the Alt+Shift+~ key?
I often want to type Alt+Shift+~ while using emacs (to run its command "not-modified"). However, since upgrading the Debian Wheezy, which upgraded Gnome to 3.4), I find that when I type those keys, ...
0
votes
1answer
34 views
Any way to make ido-find-file switch to another recently opened file if there is no match in current directory?
Emacs ido is very nice and it makes my work more efficient.
But I feel rather annoyed that it always take it upon herself to change directory when she thinks there is no match in current directory ...
0
votes
0answers
34 views
emacs python-mode kill buffer every time I change something
I'm a new user of Emacs and I used python-mode to help me write codes, but every time I make some changes and press c-c c-c, I found that python mode gives me the result that I got before I change ...
1
vote
1answer
62 views
Turn-off debugger in Emacs SLIME
According to this question, I can customize the variable *DEBUGGER-HOOK* so that it falls back to toplevel (in REPL) instead of the debugger. I've added this line to my ~/.sbclrc and it's all fine ...
-1
votes
2answers
69 views
Rename a directory in emacs Dired mode [closed]
I am new to emacs and I am trying to learn Dired mode. I have been googling and trying different method but cannot figure out how to rename a directory in emacs. I have try rename under operate menu, ...
3
votes
1answer
72 views
Is It Possible To Replace Fringe Bitmaps With Text in Emacs?
I'd love to replace the ugly pixel arrows indicating truncated or wrapped lines with simple, tasteful text (maybe even a nice unicode character, like a \u2026 ellipsis). Is this possible?
1
vote
2answers
37 views
Emacs Searchin Number of Results [duplicate]
When doing a search in Emacs (C-s, incremental search), it may be useful to see the number of results. I'm trying to find a way to do that but I cannot seem to find any. Does anyone have any ...
1
vote
1answer
69 views
How to make Emacs 's shell mode source my profile file?
I have defined some aliases and function snippets int some of my profile files, say, ~/.zprofile. But Emacs never reads them. There is already a topic about it. However, it's not enough:
It cannot ...
0
votes
1answer
57 views
how to prevent emacs-org mode code-block's evaluate result tabled
I use org-mode as following:
#+BEGIN_SRC sh
ulimit -a ...
4
votes
1answer
82 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 ...
1
vote
1answer
67 views
Global line numbering is intermittent — conflict with global whitespace
I have (global-linum-mode 1) and (global-whitespace-mode t) defined in my init.el with Aquamacs 2.4. Line numbering is intermittent, and skips displaying a line number following an empty line. ...
2
votes
3answers
86 views
Elisp: Conditionally change keybinding
I'm trying to write a custom tab completion implementation which tries a bunch of different completions depending on where the point is. However, if none of the conditions for completions are met I ...
1
vote
2answers
55 views
Format Data: Make Columns to Rows (and other way around)
Consider this case: I have some data which looks like this:
1.9170000e+03 $ 1.6909110e+00
1.4550000e+03 $ 1.7775459e+00
1.1800000e+03 $ 1.8771469e+00
1.0000000e+03 $ 1.9992190e+00
...
1
vote
1answer
22 views
emacs: calling chmod causes “file is no longer readable” warning
I'm writing a function designed to make whatever file is in the current buffer writable without being prompted for its name or for the mode (which I always want to be 644). I also want the buffer to ...
0
votes
0answers
12 views
dpkg : dependency problems - leaving unconfigured [migrated]
I have a problem with Emacs on my Linux Mint.
When I make an apt-get upgrade or apt-get -f install, I have this error message :
Paramétrage de emacsen-common (2.0.3) ...
...

