Emacs Lisp is the extension language for the GNU Emacs text editor, and in fact, most of the functionality of Emacs is implemented using Emacs Lisp. Users generally customize Emacs' behavior by adding Emacs Lisp statements to their .emacs, or writing separate packages.
0
votes
0answers
6 views
Write and call function from agenda (org-mode)
(I don't know lisp, so I suspect this is really simple.)
I want to write a function to simplify my org-mode and GTD setup.
I've based my org-mode setup on the write up here: ...
1
vote
0answers
24 views
emacs org-mode tree to list
I'm looking for a concise way to read a specific tree (including subtrees) into a list.
Say I've got:
* Branch
** Small branch
** Another small branch
*** Leaves
* Flowers
The function should be ...
0
votes
3answers
35 views
String matching in emacs lisp matching arbitary string
In emacs lisp I only know the functions string-match[-p], but I know no method for matching a literal string to a string.
E.g. assume that I have a string generated by some function and want to know ...
0
votes
1answer
17 views
local keymap for emacs outline-minor-mode
I want to set the outline-minor-mode for init.el file and when TAB key is pressed on the lines starting with ; the function outline-toggle-children should be called in order to fold and expand the sub ...
1
vote
3answers
58 views
What does regex [*\f]+ mean?
In the org-mode the outline-regexp variable is set to "[*\f]+".
I am not able to figure out what it stands for, referred this without success.
Edit:- [*\f]+ changed to "[*\f]+"
0
votes
0answers
11 views
Need help to rewrite a elisp function to use minibuffer+ido instead of ibuffer
I’m using Distel for my erlang development but the function that is used for completion is printing its output in an ibuffer. I would like to get it in the minibuffer with ido support instead, does ...
0
votes
1answer
26 views
outline-minor-mode and org-mode
In emacs, org-mode has been enabled and have opened some *.org files. Now in the init.el file i am trying to enable the outline-minor-mode in order to fold the lines starting with ";" . When i try to ...
1
vote
1answer
35 views
Emacs lisp: `directory-files`
The function directory-files returns the . and .. entries as well. While in a sense it is true, that only this way the function returns all existing entries, I have yet to see a use for including ...
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 ...
2
votes
2answers
38 views
Emacs lisp: Generate compiler warnings
Byte compiling emacs lisp is pretty useful, as it generates compiler warnings that, though sometimes cryptic, always point at an error or unfinished tasks, such as missing imports or unimplemented ...
0
votes
1answer
38 views
Emacs - Can't Find Info About electric-layout-mode
I'm very new to Emacs, and I'm having trouble finding information about electric-layout-mode, specifically electric-layout-rules.
I use c-toggle-auto-newline right now, but I'm trying to replace this ...
2
votes
3answers
68 views
How do I print a string in Emacs lisp with ielm?
I'd like to print a string in ielm. I don't want to print the printed representation, I want the string itself. I'd like this result:
ELISP> (some-unknown-function "a\nb\n")
a
b
ELISP>
I ...
0
votes
1answer
44 views
Issue with Emacs theme
I'm new here. I've got some problems with setting theme to my emacs23, on Debian. I generated code with Emac Theme Editor. I created ~/.emacs.d/color-theme/bajka.el
file with this: ...
0
votes
1answer
20 views
Using a list of fonts with a daemonized Emacs
My GNU Emacs configuration is shared between multiple computers (including fixed installations for FreeBSD, Ubuntu, and Windows 7 and a portable installation with NT Emacs and Cygwin on a USB drive). ...
5
votes
4answers
70 views
Emacs lisp: why does this sexp cause an invalid-function error?
The sexp in question is
(((lambda (b)
(lambda (a)
(+ b a))) 3) 5)
which, to me, looks like it should evaluate to 8, and in other lisps (e.g. Racket) it does, but in elisp it instead throws ...
0
votes
3answers
52 views
electric-indent-mode breaks my python code
:D
I have this code on emacs with python-mode enable:
def func(a):
if a:
return True
return False
but when I move the cursor between return False and def func( the code is ...
3
votes
1answer
61 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 ...
1
vote
1answer
56 views
How do I create shy groups in Emacs with rx?
Generally, I can use the excellent rx macro to create readable regular expressions and be sure that I've escaped the correct metacharacters.
(rx (any "A-Z")) ;; "[A-Z]"
However, I can't work out ...
1
vote
1answer
64 views
A basic function for emacs
I have never written an emacs function before and was wondering if anyone could help me get started. I would like to have a function that takes a highlighted region parses it (by ",") then evaluates ...
0
votes
1answer
31 views
passing list to &rest args
how can i pass a list of parameters to start-process's 4th argrument (PROGRAMS-ARGS):
(start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS)
for example:
(start-process "program-name" nil ...
0
votes
1answer
41 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" ...
0
votes
1answer
34 views
Emacs Lisp Built-In Indentation Issue with Keywords
Original
Say, I have a function like this:
(defun my-function ()
"This is my function."
:his-keyword xxx
:her-keyword yyy
(his-function)
(her-function))
After applying Emacs built-in ...
3
votes
1answer
62 views
Retrieve keys from hash-table, sorted by the values, efficiently
I'm using Emacs Lisp, but have the cl package loaded, for some common lisp features.
I have a hash table containing up to 50K entries, with integer keys mapped to triplets, something like this (but ...
0
votes
1answer
44 views
Converting a list of strings to flat strings in Emacs?
This question may be a bit silly but I just cannot figure it out. Suppose I have a list of strings by
(setq foo '("hello" "world"))
and now I need to flat them to get separate strings like
...
1
vote
2answers
58 views
backward compatibility for (interactive “^”) in Emacs 22
In Emacs 23 and 24, the following works fine:
(defun foo (&optional arg)
(interactive "^p")
(message "arg is %i" arg))
In Emacs 22, I get the following error:
Invalid control letter `^' ...
1
vote
1answer
20 views
How to check whether the point is at end of visual line when `visual-line-mode` is on?
(eolp) works only for "hard" line wraps, and I'd like to be able to check whether I'm at the end of screen line. I'd think that looking at the source code of end-of-visual-line would help, but it ...
1
vote
1answer
25 views
Org-mode: org-agenda-files defvar directory “evaluation”?
I have the following setup in my .emacs ...
(defvar org-dir "/home/mash/read/org/")
And use it around such as ...
(setq org-directory org-dir)
(setq org-default-notes-file (concat org-dir ...
1
vote
2answers
51 views
Emacs `apropos' programmatically?
Is there a function I can run to return all functions, variables etc, like the apropos command, but without the side-effects of opening a buffer for user-interaction? I just want a list or similar ...
0
votes
2answers
61 views
emacs lisp will not start
I am trying to setup the slime mode in emacs for using common lisp. When I attemp to start slime with M-x slime I get an error message saying:
process inferior-lisp not running.
So, I checked the ...
0
votes
1answer
37 views
Elisp - adding multiple insertions to buffer-undo-list (saving undo information)
Update: my original question was answered, but I'd like to know the more general approach - how can I define multiple operations which will be undone with a single C-/.
I'm trying to write a function ...
0
votes
1answer
23 views
How to manipulate multiple buffers using nrepl?
I am trying to twist some code from slime to nrepl.
The code is obvious when working with slime. It sends clojure code to evaluate, get the result string and process it as you like. I changed my code ...
1
vote
3answers
91 views
How to prompt the user for a block of text in elisp?
read-from-minibuffer is a great way to prompt a user for a single line of text. How do I prompt a user for a large block of multi-line text in elisp?
This is what I'm thinking, but I don't know if ...
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 ...
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 ...
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 ...
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 ...
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 ...
1
vote
1answer
40 views
Emacs lisp lambda with lexical binding?
I set out to write this code snippet for "git add -p":
(add-hook
'diff-mode-hook
(lambda()
(mapc (lambda(k)
(lexical-let ((kk k))
(define-key diff-mode-map k
...
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 ...
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
43 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
38 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
2answers
54 views
Elisp deep copying - consing
I'm trying to implement my own deep-copy routine in elisp (since something like (setq newlist oldlist) seems to give just a shallow copy, and (copy-sequence newlist oldlist) still leaves newlist ...
1
vote
0answers
28 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 ...
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, ...
0
votes
1answer
27 views
Is there a better way to resolve emacs lib dependency?
I came across a problem when I tried to run the test files in a emacs project.
For example, I cloned this project into my home directory, cd into test dir and then used emacs -batch -l ert -l ...
1
vote
2answers
78 views
emacs stop popup window for gpg passphrase [closed]
emacs is annoyingly popping up window and asking for pass phrase whenever I open a encrypted file (somefile.gpg, .authinfo.gpg). I would like it instead ask me for password in minibuffer.
is there ...
3
votes
2answers
63 views
Changing the initialization location of Emacs
I used to take the Programming languages course on Coursera and for the sake of the course i installed SML-Mode.
Now, I'd want to set up a Clojure environment in Emacs but instead of initializing ...
0
votes
3answers
52 views
Howto recursively call a function with a function as a parameter
From the Question How do I pass a function as a parameter to in elisp? I know how to pass a function as a parameter to a function. But we need to go deeper...
Lame movie quotes aside, I want to ...
