Tagged Questions

0
votes
1answer
12 views

Originate edit of remote file using emacs tramp from ssh session

This is probably a somewhat out-of-wack question. I use tramp to edit remote files, but I also open several terminals ssh-ing to that remote machine as well for other works (I had problems running ssh …
1
vote
3answers
68 views

Parsing in Emacs Lisp

Hi, I'm writing a parser in Emacs Lisp. It's a parser for text files looking like this: rule: int: 1, 2, 3, ... string: and, or, then, when text: ---------- Lorem ipsum dolor sit amet, …
5
votes
3answers
53 views

How to get a list of last closed files in emacs?

Sometimes I got itchy finger and kill some buffer that I meant to bury instead. The problem is, I use tramp to edit files from multiple machines, and those file names get long and nasty and just in …
0
votes
1answer
45 views

how to override functions in emacs lisp for specific mode?

hi How can I override emacs function with my own implementation for a specific mode? example/reference would be great Thanks
0
votes
1answer
27 views

How do I enable speedbar to display all types of files?

I have emacs v23.1.1 on ubuntu 9.10. i can't seem to make speedbar to display all files, it only displays directories. Does anyone have an idea with this?
0
votes
1answer
51 views

How to get selected text in Emacs Lisp?

I need to get selection as a string in my Emacs Lisp function.
3
votes
3answers
128 views

How do I write a regular expression that excludes rather than matches, e.g., not (this|string)?

I am stumped trying to create an Emacs regular-expression that excludes groups. [^] excludes individual characters in a set, but I want to exclude specific sequences of characters: something like …
0
votes
0answers
48 views

Emacs and anything.el, editing lines?

I have started using anything.el in emacs, and I love it. One problem I have though is the inability to edit the results. When I press R in a dired to rename a file, I can easily select from the …
1
vote
1answer
26 views

emacs semantic/ECB namespace-struct C++ confusion

hi I'm trying to setup ECB to work with C++ sources. seemingly, semantic or ECB has problem determining whenever a function declarant with explicit namespace, namespace:: function , is really in the …
1
vote
1answer
19 views

Assign a keymap to a derived mode in emacs

How can I assign a keymap to a derived mode in emacs (I am using the define-derived-mode function). There is a derived-mode-set-keymap function but without examples or good documentation.
3
votes
1answer
39 views

emacs interactive function with optional numeric prefix

hello How do I specify a function which has optional numeric prefix, if not, it prompts for a number? basically how goto-line behaves? (defun my-function(&optional n) ; I have tried …
1
vote
2answers
94 views

How to use Emacs to write comments with proper indentation, line-length, and wrapping?

I'm tired of writing comments that look like this { # bla bla blabla bla blabla bla blabla # bla bla blabla bla blabla bla blabla bla blabla bla blabla bla bla # blaaa bla } I have to …
1
vote
0answers
67 views

what is a good way to read STL and boost documentation in emacs?

hi I am familiar with using info and man commands in emacs, however boost and default STL do not come with man or info pages, instead they come as HTML documentation. especially boost does not seem …
2
votes
1answer
70 views

add #*# glob to .gitignore?

I want to add emacs autosave files to my .gitignore with the glob #*# but of course, lines starting with a hash are comment lines. How can I get this into my .gitignore without it being treated as a …
2
votes
2answers
54 views

emacs how to tell window orientation?

hi. How do I tell in emacs window orientation, e.g. if it was created by vertical or horizontal split? alternatively, how can I tell if window can be resized vertically or horizontally? on a related …
2
votes
1answer
58 views

emacs programmatically change window size

hi. I would like to implement automatic collapse of compilation buffer to small size (but not close at a delete windows), such that upon successful compilation to window is shrunk to minimum size. …
1
vote
3answers
68 views

emacs equivalent of vim’s bg=dark? (setting background to dark)

In vim, I can run set bg=dark and then vim will adjust all syntax highlighting to work on a terminal with a dark background (whether or not the background actually is dark, vim will assume that it …
1
vote
1answer
48 views

‘Either or’ type of regex in Emacs occur function?

My version of Emacs is 23.0.91.1. Ubuntu did not catch up with 23.1, yet. Anyway, I have an strace capture, and wanted to see file descriptors usage. So, wanted to see "^(open|socket)" regexp on …
5
votes
1answer
60 views
+250

How to call latexmk in emacs, and jump to next-error

I would like to use latexmk to compile my LaTeX documents in Emacs. Especially I need the Emacs functionality next-error, which is typically called with C-x `, and jumps to the next LaTeX error in the …
3
votes
2answers
58 views

Emacs/AUCTex: run command on file that is not currently open

I edit my LaTeX files in Emacs using AUCTeX. To compile, I press C-c C-c, which will run pdflatex root, if root.tex is the file in the current buffer. But what if I want it to run pdflatex on a file …
2
votes
1answer
45 views

lisp nth function does not work on cons-cell

How to use nth function in lisp if my my variable is combination of list and cons-cell for eg: (setq aa '(1 2) ) (nconc aa (+ 1 2)) this return me (1 2 . 3) when i say (nth 1 aa) it returns 2 but …
-1
votes
0answers
21 views

Conkeror Keybindings on Mac OSX

Has anyone figured out how to change the keybindings for the meta and control keys for Conkeror on Mac OSX? For example, in Emacs I have my C mapped to the apple command key and my M mapped to the …
1
vote
1answer
37 views

How to remove directory window and add a cscope window in Emacs ECB?

Yesterday I installed ECB on my Emacs, and I find method window and history window quite useful. But directory tree window and source window less useful, if I can hide them I will save more space for …
0
votes
2answers
30 views

How can I perform a partial symbol match on a defstruct?

In this StackOverFlow question, I created an employee database and provided a select-by-first function. How can I write a select-by-first-pattern where the record is returned if any part of the …
1
vote
2answers
64 views

Open a file directly to emacs (by double-clicking)

How would I go about setting all .rb files or all .py files to open in emacs if I double-click them; say, from the desktop? I'm on OS X 10.6.2. I have the script: on open of finderObjects …
4
votes
2answers
87 views

Emacs copy with regex

I have a text file. Can Emacs select text based on regex and put it in kill-ring, so I can copy it somewhere else? Something like regex-kill-ring-save?
1
vote
2answers
34 views

Using a defstruct database with remove-if-not

I'm trying to adapt this defstruct example by adding the select- functions described in the book: Practical Common Lisp. I'm running the code in Emacs using the Common Lisp package. The …
0
votes
2answers
85 views

Formating XML in Emacs

I have a project with huge XML files that I'm copying and pasting into Emacs to edit. It's all on a single line, so I'd like to have a tool to make one XML element per line. Is there an Emacs …
0
votes
4answers
42 views

What’s a good way to deal with a german keyboard when using Emacs on Mac OS X?

Maybe it’s a bit weird to ask this question in English because my problem is a rather non-English one. I’m an Mac OS X user and I’m on my way to learning Emacs. I decided to use the Emacs 23.1 Cocoa …
2
votes
2answers
53 views

Minor Mode for tracking changes in a buffer

Is there a minor mode in Emacs that will highlight changes made to a buffer? I'm picturing something like highlight tails without a timeout feature. I would use highlight tails for this and change …
1
vote
3answers
70 views

How to copy to clipboard in Emacs Lisp

I want to copy a string to the clipboard (not a region of any particular buffer, just a plain string). It would be nice if it were also added to the kill-ring. Here's an example: …
1
vote
2answers
124 views

Open file via SSH and Sudo with Emacs

I want to open a file inside Emacs which is located on a remote server, with sudo powers on the server. I can open local files with sudo via Tramp like this: C-x C-f /sudo::/home/user/file But I …
1
vote
3answers
114 views

suggestions for configuring Emacs to increase productivity? [closed]

Possible Duplicates: Using EMACS as an IDE What’s in your .emacs? hi I would like to hear how you set up your Emacs, in terms of modes, number and position of windows, and how you …
2
votes
4answers
64 views

How to switch to a different buffer from a terminal buffer

I've been using emacs for few weeks and it's been great so far - coming from vim was easier than I expected (actually - emacs' keyboard shortcuts feel more... natural). I have added few …
3
votes
5answers
165 views

Emacs equivalents of Vim’s dd,o,O

Hi there, I am currently playing around with emacs and happy with most of the concepts. But I really adored the convenience of the three vim commands: dd,o,O Hopefully you can tell me how to mirror …
2
votes
3answers
69 views

Emacs: how to evaluate the smallest s-expression the cursor is in, or the following s-expression

What is a good way to evaluate the (+ 100 (+ 100 100)) part in (+ (+ 1 2) (+ 100 (+ 100 100))) ? For now, I do it by C-x C-e, which means I need to locate the ending parenthesis, which is …
0
votes
4answers
159 views

I want to change the way text is represented internally in ANY Text Editor

I want to use a algorithm to reduce memory used to save the particular text file.I don't really know how text is stored but i have an idea in mind. Would it be better to extend a open source text …
4
votes
2answers
124 views

Writing “Hello World” in Emacs?

I would like to write a few Unix scripts in Emacs Lisp. However, there doesn't seem to be a clean way to write to STDOUT so I can redirect the results to a file or pipe the output to another command. …
1
vote
1answer
18 views

Operating on multiple lists?

On page 224 of Common Lisp: A Gentle Introduction to Symbolic Computation this example is given with the output. > (mapcar #'(lambda (x y) (list x 'gets y)) '(fred wilma george diane) …
2
votes
3answers
91 views

how to get grep working in Emacs on Windows (EmacsW32)

M-x grep, M-x lgrep, M-x rgrep don't work in EmacsW32 for me. I do M-x lgrep and it says grep is not a command: grep -i -n "hello" * NUL 'grep' is not recognized as an internal or external command, …
2
votes
5answers
84 views

Colorize snippets of text in emacs

Hello. Suppose I have a few words I would like to highlight, so I want to change the color of those few words only to, say, green. Is there an easy way to do this in emacs? Thank you.
4
votes
3answers
100 views
+100

Is there a good Emacs mode or method for lex/flex/yacc/bison files?

Editing lex or yacc files with Emacs is a nuisance: if I use C mode the indenting goes wrong, and if I don't use C mode I can't use indenting. Does anyone have a trick, a method, or an editing mode to …
1
vote
2answers
52 views

sending buffer region to the repl in emacs

hi i'm using quack mode with mzscheme, is there a way to send(evaluate) the whole toplevel contents to the REPL window? i checked the key bindings but i don't see any commands for this, there are …
1
vote
3answers
50 views

File, Edit, Options, etc. menus don’t work on Emacs 23, any ideas?

Hi - I upgraded to Emacs 23 a while back and when I did the File, Edit, Options, and other menu options are not available on OS X Snow Leopard. Any ideas how to get them back? Thanks!
2
votes
2answers
79 views

Can I detect the display size/resolution in Emacs?

I'd like to change the window/frame size of my XEmacs based on the current display resolution. This is useful when I run my laptop either by itself or attached to a docking station with an external …
2
votes
5answers
97 views

Code completion key bindings in Emacs

When doing a M-x describe-mode in a .el file, I noticed that the Emacs-Lisp mode actually does code completion. However, lisp-compelete-symbol is bound to M-TAB. In Windows, this key binding is …
0
votes
3answers
57 views

Default string for grep-find in emacs

I often use the command grep-find in emacs to search through my source files, but it's annying that it always finds matches in temporary files and backup files and so on. The default command for …
3
votes
5answers
186 views

What unix text editor should I learn? [closed]

Maybe this should be a community wiki page... What unix text editor should I learn? My co-workers mostly use vi. I am thinking about vim because the syntax highlighting seems appealing. Is there …
2
votes
1answer
38 views

How can I remap the prefix keys ‘c’, ‘d’ etc. in Emacs viper-mode

I'm using the Colemak keyboard layout, and want to try the Vim layout from here with Vimpulse. However, the layout remaps the command prefix Vim keys 'c' and 'd' among others, and these keys don't …
2
votes
2answers
97 views

Working in both emacs and Textmate

I have an Ubuntu Linux development machine and a Macbook that I work on. On my laptop I use Textmate for PHP development on the go. The problem is that when I return to my Ubuntu dev machine and open …

1 2 3 4 5 25
15 30 50 per page