Tagged Questions

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 …
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
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
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 …
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
vote
2answers
110 views

How does emacs url package handle authentication?

I have not seen a really good example on the web. How can I add authentication to a request like this: (defun login-show-posts () (interactive) (let ((url-request-method "GET") …
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 …
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) …
0
votes
2answers
122 views

Compiling Wanderlust for Windows and use it for Gmail.

I'm trying to get Wanderlust working in Windows to connect to Gmail. Compiling the code is much more painful than expected. Here are the barriers so far: Can't download dependent packages: SEMI, …
1
vote
4answers
156 views

emacs defadvice on python-mode function

Hi! In python-mode, there is a function called py-execute-region which sends a highlighted region of code to the Python buffer for evaluation. After evaluation, the cursor is in the Python buffer, but …
1
vote
1answer
39 views

elisp function that returns the current file being interpreted.

Isn't there a function that returns the current file being interpreted? That is, if I call it in foo.el, it will return "foo.el"? The use case is in startup files. No, I don't want user-init-file, …
1
vote
3answers
94 views

Check if a string is all-caps in Emacs lisp?

Hi, all. I was wondering if Emacs lisp had a built-in function for checking if a string is made entirely out of capitalized characters. Here is what I'm using right now: (setq capital-letters …
10
votes
6answers
662 views

How can I emulate Vim’s * search in GNU Emacs?

In Vim the * key in normal mode searches for the word under the cursor. In GNU Emacs the closest native equivalent would be: C-s C-w But that isn't quite the same. It opens up the incremental …
1
vote
2answers
33 views

Sorting buffer lines by a field

How can I sort the following buffer data by the second field (author's name) or third field (published date)? I'd like a pure elisp solution, so I'd rather not have a solution that used M-|. Tom …

1 2 3 4 5 13
15 30 50 per page