GNU Emacs is an extensible, customizable text editor written primarily in Emacs Lisp.

learn more… | top users | synonyms

2
votes
0answers
26 views

astyle, --indent-class and emacs

I need a way to reproduce the effects of --indent-class switch of astyle in emacs c-mode indentation engine. Here is what the code looks like: class Foo { public: Foo(){} private: void ...
0
votes
1answer
29 views

Emacs: how to get rid of the unwanted tab in perl-mode yasnippet

I have the following yasnippet in perl-mode to create a sub: #name : sub ... { ... } #key: sub # -- sub ${1:function_name} # {{{ { $0 } # }}} But when Emacs expands it, it generates an unwanted ...
4
votes
4answers
221 views

Is vim already good enough for programming clojure? [closed]

I've used vim for a pretty long time and I'm still happy with it. I started to learn clojure 6 months ago. It seems that emacs is the first choice for lispy language programming. But I would rather ...
6
votes
2answers
90 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 ...
2
votes
2answers
67 views

Problems with emacs syntax highlighting for python programs

I am using python-mode for syntax highlighting. Everything is fine except the highlighting of docstrings, which makes reading code in github repositories with complex docstrings very difficult to do. ...
2
votes
1answer
34 views

Emacs set tab-stop-list only local to a buffer?

All projects I work with use 2 spaces for indent, so I have my tab-stop-list set as such. However, for a particular file extension, I need to use 4 spaces. I'm trying to add a mode hook that does: ...
1
vote
2answers
51 views

Emacs Linum-mode no fringe in Cocoa

I have the issue visualized here: The problem is the fringe is not colouring the background of my linum line numbers. I'm using Emacs 24.3.1 with Solarized color theme. I've looked over various ...
0
votes
2answers
48 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 ...
0
votes
0answers
17 views

Emacs, Zsh and Ansi-Term — weird chars [migrated]

My issue is illustrated in the follow images: This is the visual representation I get in my iTerm of my Zsh shell, with the same font as used in Emacs: This my my Emacs output using ansi-term: ...
2
votes
1answer
47 views

Emacs Org-Mode: How to set date and time on the first Wednesday of month

I'm trying to add a date and time for an event in org-mode that will repeat on the first Wednesday of each month. I know I can use the diary-sexp format to identify the first Wednesday of each month, ...
1
vote
1answer
45 views

Export a table to LaTeX and respect ^:nil

I have an org file that isn't exporting to LaTeX the way I want it to. I am writing up a quiz to test job applicants' expertise with relational data. For clarity, I decided to go with column names ...
1
vote
2answers
80 views

view a file's git history directly from an emacs buffer

I'm often interested in seeing a file's git history (e.g. run git log <fname>) while viewing that file in an emacs buffer. Of course it's possible to just open a shell buffer and issue the ...
0
votes
0answers
38 views

emacs matlab mode hook not running

I've defined a couple of functions for Matlab code in my .emacs. The functions are available after emacs opens, but the matlab-mode-hook doesn't seem to have run. That is, the relevant variables ...
3
votes
1answer
50 views

How do you get emacs to word wrap when screen is split

By default emacs wraps long lines. However, when I split the screen using ctrl-x 3, then the two screens will truncate long lines. How do I get emacs to behave the same regardless of whether the ...
2
votes
5answers
80 views

How to increment a serie of number on the same row in a configuration file?

Let say I have a configuration file, and each lines contains space separated values. On on the column I have only zeros. Example: ... # there is more configuration before the interesting stuff: 0 0 ...
0
votes
0answers
53 views

Why do I have to press C-b twice to move one char back in bash emacs mode?

I am using emacs key-bindings in bash. To move one character back, I have to press C-b twice. Is there a way to avoid this ? I am having the same problem while running emacs editor also. If I start ...
1
vote
2answers
84 views

Emacs attach an action to any key pressed

Suppose, I have the code: (defun dummy () (interactive) (message "aaa")) (local-set-key (kbd "<left>") 'dummy) When you click <left> key in the current buffer, it will ...
1
vote
2answers
70 views

Implementation of a kill word or line function in emacs

How can I implement a function in emacs that kills a word, then if called again immediately it kills the entire line, perhaps called kill-word-or-line. I'm a bit of an elisp n00b but may be able to do ...
1
vote
2answers
62 views

How do I view a web-based file in emacs?

Say I've got two web based xml files that I would like to diff (test output vs. baseline). My current work-flow is to manually download the files to a temporary folder and load them into Emacs for ...
1
vote
1answer
53 views

Emacs could not find the the directory for eieio-1.4

I am an absolute Emacs newbie, but I am determined to learn it and learn from it. I am using Mac OSX 10.8.3 and Emacs Version 24.3 from here. I did the Emacs tutorial and sat Emacs up with R using ...
2
votes
2answers
66 views

Emacs keylogger

I'm trying to implement a keylogger in Emacs (for my own, non-nefarious purposes). It seems that I can reliably capture the last command through real-last-command in the pre-command-hook So, I can ...
0
votes
2answers
38 views

Installing emacs plugins on windows

I already looked through other topics, but I still couldn't find a solution. I'm trying to install "nxhtml" plugin for Emacs in windows 7. I already setup my "HOME" environment variable as "C:\". So, ...
0
votes
1answer
49 views

SLIME, SBCL, and EMACS setup not resulting in expected output

I just set up Slime and am immediately noticing some issues I can't seem to resolve. This is the result I get when I try to evaluate and print foo (C-c C-p) I thought this would return 6 instead of ...
3
votes
1answer
34 views

How to set different author/committer for Git in TRAMP environment?

I edit files under Git control with Emacs 23.3.1/TRAMP/VC sudoed over an ssh connection (/sudo:sudouser@host:file with tramp-default-proxies-alist set accordingly). sudouser is a shared account, so I ...
0
votes
1answer
34 views

Change the hour when org-mode is starting new day

I use org-mode to clock my work and sometimes I work past midnight for few hours. So, for example, I clocked time starting 03.06.2013 10pm and ending 04.06.2013 2am. And org-mode is dividing it at ...
3
votes
1answer
43 views

Why is the output of `vc-annotate` different than the output of `git-blame`?

Or perhaps more generally, can someone explain what vc-annotate is doing? Because I see changes frome multiple files listed in a single file, which is beyond me as to how it's being calculated.
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 ...
3
votes
1answer
51 views

Does emacs ido support flex matching in buffers?

I found ido to be very helpful in finding files (C-x C-f) and buffers (C-x b) especially with flex matching enabled. I also installed smex (built on top of ido) in order to do the same thing with ...
1
vote
1answer
49 views

How to define a wrapper command?

I want to define a modified version of an Emacs command, e.g., browse-url. The modified version should bind some variables and then defer to the system command, e.g., (defun browse-url-incognito ...
0
votes
1answer
42 views

Elisp sentinel on process waiting for input

I made a function, compiling the current latex file: ;close the *async pdflatex* window, when pdflatex finishes (defun latex-sentinel (process event) (message event) (cond ...
1
vote
2answers
35 views

Emacs ESS key bindings

I am trying to set some key bindings for ESS. I read one way is: (eval-after-load "ess-mode" '(define-key ess-mode-map (kbd "<f5>") 'myfunc)) But this works only inside the code blocks ...
1
vote
1answer
31 views

How can I trigger the reverse video mode after Emacs has started?

I know I can start Emacs with the "--reverse-video" command line option. But is there a way to get the same result after starting Emacs?
0
votes
0answers
28 views

Behavior of next-error when buffer is visible but not current

I have three windows: compilation, fileA.c, and fileB.c . Buffer fileA.c is being edited. From this buffer I invoke M-x compile. Errors occur in fileB.c which is still visible While still in buffer ...
1
vote
1answer
45 views

Magit is very slow when committing on Windows

Magit takes enormously long time to commit a file. Absolutely disproportional to any other task - can take several minutes, or else I give up and commit it from the shell. Is there any reason to it? ...
2
votes
0answers
58 views

Emacs and Git show wrong time on Windows

Emacs is two hours off from the system time. I tried to google for the problem, but no luck. What do I need to configure to correct this? I suspect this to be the difference from GMT to where I live ...
4
votes
2answers
70 views

Developing web applications without a mouse [closed]

I am trying to find the best way to debug a single page application with lots of ajax and javascript without using a mouse. What I have noticed is that I spend most of my time clicking on the panels ...
3
votes
1answer
66 views

How to get RSS support for org-mode files

I have created a static blog and use org-publish-project to publish org-mode files to HTML. Now I want to generate RSS automatically, Is there any elisp packages which have this feature?
1
vote
0answers
27 views

Is there a way to make emacs ispell/aspell ignore shoft hyphens in HTML?

I write mostly my documentation in HTML using emacs as my main editor. Emacs let you interactively spell-check the current buffer with the command ispell-buffer. (I think the underlying program used ...
2
votes
1answer
116 views

How can I spell check for multiple languages in emacs?

I write mostly my documentation in HTML using emacs as my main editor. Emacs let you interactively spell-check the current buffer with the command ispell-buffer. Since I switch between a number of ...
0
votes
3answers
64 views

How to open an org-mode file automatically in Emacs

How to open files automatically when starting emacs? does not work either under Windows or under Linux. After adding the find-file command I received a message so I disabled the auto-save, but ...
2
votes
3answers
67 views

Autocomplete parentheses in SLIME

I'm learning Common Lisp using SLIME. Is there a way to autocomplete parentheses so that when I type an open paren, a closed one is automatically added? I'm more of a vim guy, so in mv ~/.vimrc I ...
1
vote
2answers
152 views

Vagrant / Clojure / Emacs

I want to put together a standard environment for exploring Clojure with Emacs. Has anyone got a recipe that would suit this? I'm thinking of a Vagrant system running a flavour of Ubuntu, with NREPL ...
0
votes
0answers
22 views

How to insert tab character in `Text` mode? [migrated]

I have tried to parse my language_data.txt, which is edited by emacs. The different column is seperated by "\tab". But when I read the file, it is found that the tab characters has been replaced by ...
0
votes
1answer
18 views

Doc viewer for Hindi or Sanskrit

On my Ubuntu 13.04 if I paste Hindi or Sanskrit into an Emacs tex document, I get the characters just fine. (I take it this is because Emacs is unicode-capable.) However, Okular and Document Viewer ...
1
vote
1answer
50 views

Emacs: how to get the global shortcut value

I have the following global keyboard shortcut in Emacs: (global-set-key (kbd "C-<right>") 'forward-word) For the org-mode I decided to redefine this shortcut. If the cursor stands on a link, ...
7
votes
5answers
192 views

Step-by-step debugging with IPython

From what I have read, there are two ways to debug code in Python: With a traditional debugger such as pdb or ipdb. This supports commands such as c for continue, n for step-over, s for step-into ...
0
votes
2answers
38 views

emacs elpa version of auctex has no “auctex.el”

To set up auctex in Emacs you are told to include (load "auctex.el" nil t t) ...etc. in your init/.emacs file. But if you installed auctex with elpa (which puts files in ...
1
vote
2answers
47 views

ESS does not find Rterm.exe on windows

I installed R in a directory called "X:\alphaAndOmega\R\R". So Rterm.exe (32-Bit version) is located in "X:\alphaAndOmega\R\R\bin\i386". I know that it's not a 'standard R-directory' and that ...
1
vote
1answer
34 views

Does Emacs support basic unicode sub-properties for regular expressions?

EmacsWiki[1] contains the regular expression syntax used in Emacs. My question is, is this a non-exhaustive reference? That is, does Emacs support more advanced properties like Perl's ...
0
votes
1answer
55 views

Accessing local emacs from PuTTY

My school (UCSB) has us use PuTTY to remotely access our CS account that's ran on the school's server. Whenever I attempt to use the school's emacs via PuTTY, it's extremely tedious because it's all ...

1 2 3 4 5 162