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
3 views
How can I save specific window parameters in emacs
I use (current-window-configuration) to save the size, layout etc of windows, and (set-window-configuration ...) to restore them, so that I can toggle between several window setups. However ...
1
vote
1answer
21 views
How do I bind another key to isearch-forward in EMACS correctly?
I swap between Windows and Linux frequently and constantly press C-f when I want to search in EMACS. Since I don't need forward-char that much, I decided to bind C-f to isearch-forward (default C-s) ...
3
votes
1answer
42 views
How can I make an Emacs shell command output buffer always follow the bottom?
I'm writing an Emacs minor mode that has some Emacs commands which invoke shell commands. I'm using the following code:
(let ((output (get-buffer-create "*Foo Output*")))
(start-process ...
1
vote
1answer
42 views
Emacs Lisp map over a list of function names and call them all with the same arg
I'm having trouble understanding the approach I need to take to fold over a list of functions and invoke them all with a particular argument.
Here is what I as assumed would work. I've tried various ...
3
votes
1answer
53 views
Ascii graphic interface library (ncurses-like) for emacs scripts?
Is there any interface library for emacs scripts, allowing to draw various gui in emacs buffers?
As far as I know, emacs extensions interface is limited by key-bindings and dialogues in the message ...
1
vote
2answers
44 views
Emacs: send output of eval to a new buffer
I want to eval a buffer and send the result to a new buffer. How do I "send" the result of the eval-buffer function to the content of a new buffer? here my attempt:
(set-buffer (get-buffer-create ...
2
votes
1answer
27 views
How to execute sudo command with filter in elisp
I would like to use elisp to execute a privileged command, then use a filter to do further processing when certain output is seen.
It's my understanding, after exhaustive RTFM'ing, that I can:
Set ...
1
vote
1answer
26 views
operate file in background?
I am writing an elisp function for having a short help description for a symbol:
(defun set-up-tooltip()
;; search for the text to be highlighted
...
(add-text-properties (match-beginning ...
2
votes
2answers
52 views
Why can't I change paredit keybindings
I'm trying to use just a few functions from paredit, without loading all the keybindings. Looking at paredit.el, the only keymap I found was paredit-mode-map, so I tried this.
(setq paredit-mode-map ...
3
votes
3answers
69 views
Highlight non-local variables in Emacs Lisp
In js2-mode, global variables are automatically highlighted for me:
How can I do the same in Emacs lisp? I'd like to be able to highlight flymake-log-level and barr in the following:
(defun foo ()
...
1
vote
2answers
23 views
Point moving after command but not in debugger
I have been trying to modify vlf so that normally scrolling reloads additional portions of the file when the points gets near the edge of the current batch. That much is working, but I am ...
1
vote
1answer
40 views
Elisp function return value
I'm having a (probably) dumb problem with Elisp. I want a function to return t or nil depending on a when condition. This is the code:
(defun tmr-active-timer-p
"Returns t or nil depending of if ...
5
votes
2answers
70 views
Make as much as possible of buffer visible in window instead of showing empty space after buffer
It is possible to "scroll past the end of the buffer" in a window. This is useful because Emacs has to somehow use the extra space when the buffer does not fill the whole area available to the window ...
1
vote
1answer
24 views
Elisp recursive macro
Trying to define resursive macro in elisp
(defmacro remacro (keys)
(if keys
`(func1 ,(car keys)
,(remacro (cdr keys)))
))
(macroexpand '(remacro '(a b c)))
But it is ...
2
votes
1answer
56 views
How can I jump between buttons in Emacs?
I create some buttons in my major mode with:
(insert-text-button "Start" :type 'start-btn)
...
(insert-text-button "Button2" :type 'b2-btn)
I want to jump to the next and prev. buttons from the ...
1
vote
2answers
64 views
Get width of current monitor in Emacs Lisp
I have a two-monitor setup (running Ubuntu).
The Emacs Lisp function display-pixel-width gives me the combined width of the two monitors. How can I get the width of the current monitor (i.e., the ...
1
vote
1answer
50 views
Is there functionality in magit, the emacs git add-on, to jump to edits?
In Jetbrains products, like IntelliJ and RubyMine, you can hit F4 in the diff window of a git diff to jump to to the current edit. Is there any functionality in Magit for emacs to go directly to a ...
3
votes
1answer
68 views
Is there emacs capability for visiting last edits?
In the JetBrains products, there's a very handy key binding that lets you visit all the spots you made an edit. Hit the key once to go to the last edit (file and location), and keep hitting the key to ...
0
votes
0answers
25 views
Running emacs keyboard macros in batch mode
I want to be able to save a keyboard macro in emacs and apply it to a file repeatedly in batch mode. To give a simple example, I made the following file paren-delete.el which is supposed to delete all ...
2
votes
1answer
40 views
add-hook to emacs scratch at startup
I have set the emacs scratch to open in scheme-mode, I am running xscheme which means that when I run the command M-x run-scheme I can use the scratch buffer to evaluate scheme and not elisp.
;;(setq ...
1
vote
3answers
56 views
How to align certain text in emacs vhdl-mode
In Emacs how would I align a group of text:
signal slv4 : std_logic_vector(3 downto 0);
signal slv16 : std_logic_vector(15 downto 0);
signal slv8 : std_logic_vector(7 downto 0);
signal slv32 : ...
2
votes
1answer
64 views
Http request in Emacs
I'm trying to send an HTTP GET request from my elisp code and store the contents of the responce in a variable. As simple as
use LWP::Simple;
my $data = get("http://some.url");
I use Windows 7 ...
0
votes
2answers
43 views
How can i bind C-x-insert in emacs
I want to bind C-x-insert to a command. This works:
(global-set-key [\C-insert] 'my-func)
But this doesn't:
(global-set-key [\C-x-insert] 'my-func)
1
vote
1answer
51 views
How to set back to the original value interactively if a variable's value is changed?
Sometimes the defvar/defcustom variable is changed by another expression in other elisp scripts with setq and the like, or they are altered by the directory/file local settings. Indeed I can use ...
0
votes
1answer
45 views
Ensure filepath exists for reading
I need to define a function that will, without unnecessary side effects (i.e. an open buffer), ensure a file exists ready for reading.
Here is what I have so far:
(defun ensure-existence (file)
...
1
vote
1answer
56 views
emacs: get lexically bound variable value by name
The following does not work with void variable error. What should eval be replaced with to get this to work?
;; -*- lexical-binding: t -*-
(defun foo2 ()
(let ((b 'lkj))
(lambda ()
(eval ...
2
votes
1answer
34 views
Space character inside an argument (emacs lisp)
In windows, I set the variable inferior-lisp-program to be (shell-quote-argument "D:/Program Files/ccl/wx86cl.exe").
But when I run inferior lisp with the command run-lisp, emacs responds:
Searching ...
1
vote
1answer
52 views
how to supress popup window from emacs programatically?
For example, I have this setup in my .emacs
(defun gtags-create-or-update ()
"Create or update the gnu global tag file."
(interactive)
(if (y-or-n-p-with-timeout
(format "Run gtags to ...
3
votes
1answer
101 views
How to remove the vertical border between windows in Emacs
How can I remove the border between windows? I'm using Emacs with -nw
2
votes
1answer
71 views
how to return function in elisp
This is related to this question: elisp functions as parameters and as return value
(defun avg-damp (n)
'(lambda(x) (/ n 2.0)))
Either
(funcall (avg-damp 6) 10)
or
((avg-damp 6) 10)
They ...
0
votes
1answer
37 views
A function that can toggle between term-char-mode and term-line-mode submodes?
In term.el, we can change from one submode to another. But, is there a way to toggle between them with one function(and one key-binding)?
Another question: Is there a way to mark text with keyboard in ...
0
votes
1answer
42 views
defadvice error for isearch-search-fun-default
This is a continue of my previous post (is it possible to preprocess the input string before isearch-forward in Emacs). I am trying to implement jpkotta's answer using the variable ...
0
votes
0answers
25 views
Emacs bookmark and accessing across different local path
When I bookmark a File in emacs, it has the full-path C:/WindowPath/CommanPath/File I can access the same directory from Linux with /LinuxPath/CommanPath/File. But, when I try to bookmark in one OS ...
1
vote
2answers
59 views
is it possible to preprocess the input string before isearch-forward in Emacs
For example, if I type "foo spam" after the prompt of isearch-forward, how can I advice some functions in isearch.el to convert the string to "foo[.?:,!]?[ \n]spam" before search? Basically I want to ...
2
votes
3answers
65 views
emacs greedy search-backward-regexp
How to make backward regexp search greedy in emacs?
For example, I have abc 163439 abc in my buffer, and I run M-x search-backward-regexp with the following regexp: 163439\|3. This regexp will ...
0
votes
2answers
36 views
How can I use eval-after-load for c/c++ mode settings in emacs?
I hope to add additional paths to ffap-c-path in c-mode/c++-mode, and I prefer the lazy load mechanism. There are two choices for me:
use add-hook for c-mode-hook/c++-mode-hook
eval-after-load
...
1
vote
0answers
53 views
Auto-complete the next possible word(s)
In Emacs auto-complete-mode is a wonderful feature that helps to complete the word. I like to extend this a bit, and like to see the next possible word(s) as auto completed. I see that dabbrev-expand ...
0
votes
1answer
37 views
Request.el “cannot create connection to api.stackexchange.com”
I'm using the request.el library (available via MELPA) to try and create a basic framework from which to start work in earnest on a Stack Exchange mode for Emacs. All I want to do is to be able to ...
0
votes
1answer
23 views
Elisp -> Merge all the files in a directory into one file
I'd like to make a function to merge all the emacs configuration files within a folder into one file.
Now I do this using a bash script file, which looks like this:
> init.el
for d in ./defun/*.el ...
0
votes
0answers
31 views
Emacs, gdb: (process-send-string …) to gdb not working?
I am writing a function that auto-compiles a c program in the current buffer. I need to update the existing gdb session with the newly compiled executable, thus I need to send commands to the inferior ...
3
votes
1answer
67 views
What am I missing about make-symbol and assq here?
I am trying to produce the same structure a let block accepts for local variable definitions but am hitting a wall: given this parse function:
(defun parse (string)
(mapcar (lambda (line)
...
2
votes
3answers
93 views
How to get dirtrack mode working with colored, multi-line prompts
I use the following prompt for my Emacs shell:
PS1='\n\[\e[33m\]\w\033[36m\]$(parse_git_branch)\[\033[00m\]\n$ '
The output looks like this:
I tried to use the regexp "(^[^\\(]*)" to match the ...
0
votes
0answers
46 views
Emacs C-Backspace annoyance behavior [closed]
function test(){
}
Curser Here
If I were to hit C-Backspace while the cursor is at the end of the code above, it will also delete test()
How do I make it so that it behave more like any other ...
0
votes
1answer
28 views
How can I see the results of modifying variable ibuffer-saved-filter-groups without restarting Emacs?
I'm trying to modify the alist ibuffer-saved-filter-groups. But after I quit ibuffer and eval the setq statement, the ibuffer categories don't change when I run M-x ibuffer. The changes only get ...
1
vote
4answers
78 views
How to exit from a function at any arbitrary point, in elisp
This is a simple question, but somehow I couldn't find an answer by googling:
How do you exit a function at any arbitrary point of execution, if some condition is not met. For example (I use "(exit)" ...
1
vote
1answer
41 views
Emacs lisp: get sub-matches from a regexp match
I have a string variable somewhere in elisp code, and want to extract some parts of it into other variables using a regular expression with groupings. That's something that you can write in 1-2 lines ...
0
votes
1answer
40 views
Check if major mode is equal one of several emacs
I found a snippet to close all dired buffers, which I want to use in sunrise commander:
(defun er/kill-all-dired-buffers()
"Kill all dired buffers."
(interactive)
(save-excursion
...
2
votes
1answer
34 views
How can I regexp replace a string in an elisp function?
I'm writing myself a little helper function and one of the things I would like to do in it is to do a replace based on regex. replace-regexp-in-string looked like a good candidate. I'm unable, ...
0
votes
2answers
35 views
New frame with scratch (text-mode) — close, but no cigar . .
The following code only generates the new buffer in fundamental mode, and I haven't been able to figure out how to get the new scratch buffer to automatically generate in text mode . . . Any help ...
1
vote
2answers
82 views
how to overwrite (defun eval (expr)) function in LISP
I am new to LISP programming and it is the end of semester and our teacher asked us to do this project and I have been trying to make it but I am stuck so any help would be appreciated. the Project is ...