3
votes
2answers
290 views
2
votes
2answers
100 views
Can an elisp piece of code “yield” so emacs doesn’t block?
Is there any way to write something like this without taking over emacs?
(defun dumb-wait (seconds)
(let ((done (+ (second (current-time)) seconds)))
(while (< (second (cu …
2
votes
Why are Vi and Emacs popular ?
Joel might say: "You have to learn C, and you have to code C using vi or emacs".
…
1
vote
How to do remote development with emacs?
I would just ssh into the remote machine and run emacs in terminal mode instead of using TRAMP. TRAMP is really slow when you don't expect slowness, at least in my experience. I have also seen it …
0
votes
Open an Emacs buffer when a command tries to open an editor in shell-mode
Along with using emacs client/server, I am using this script to invoke emacs.
This will start emacs if it is not running yet, or just open a new emacs buffer in the running emacs (using g …
3
votes
The single most useful Emacs feature
Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground:
(add-hook
'shell-mode-hook
'(lambda (&rest ignore)
(rename-buffer (generate-new-bu …
