2
votes
What is the best code template facility for Emacs?
Personally, I've been using Dmacro for years (ftp://ftp.sgi.com/other/dmacro/dmacro.tar.gz).
Here's a review of it …
1
vote
Set 4 Space Indent in Emacs in Text Mode
Try this:
(add-hook 'text-mode-hook
(function
(lambda ()
(setq tab-width 4)
(define-key text-mode-map "\C-i" 'self-insert-command)
)))
That wil …
3
votes
Emacs equivalent of Vim’s yy10p ?
Here's a function I took from an OS/2 port of Emacs. (Yes, I've been using Emacs for a while.)
;; Author: Eberhard Mattes <mattes@azu.informatik.uni-stuttgart.de>
(defun emx- …
1
vote
How do I get a warning before killing a temporary buffer in Emacs?
(defun maybe-kill-buffer ()
(if (and (not buffer-file-name)
(buffer-modified-p))
;; buffer is not visiting a file
(y-or-n-p (format "Buffer %s has been edited. Kil …
3
votes
replace-char in Emacs Lisp ?
Why not just use
(replace-string "\x53979" "'")
or
(while (search-forward "\x53979" nil t)
(replace-match "'" nil t))
as reco …
6
votes
Why are fixnums in emacs only 29 bits?
The remaining 3 bits are used as flags by the Lisp interpreter. (You can get bigger integers by compiling Emacs for a 64-bit machine.)
…
0
votes
How to invoke an interactive elisp interpreter in Emacs?
In the *scratch* buffer, just type C-j to evaluate the expression before point.
…
12
votes
Smart home in Emacs
(defun smart-beginning-of-line ()
"Move point to first non-whitespace character or beginning-of-line.
Move point to the first non-whitespace character on this line.
If point was already …
7
votes
Create aliases in emacs?
I'm not really clear on what you're asking for. I store my commonly-used files in registers in my .emacs:
(set-register ?c '(file . "c:/data/common.txt"))
(set-register ?f '(file . …
0
votes
Create aliases in emacs?
If you want an alias to a function, you use defalias:
(defalias 'nuke 'delete-trailing-whitespace)
But if you're complaining that Emacs's function nam …
3
votes
How to prevent Windows XP from stealing my input Ctrl-Space which is meant for Emacs
Go to the Regional and Language Options Control Panel. Click the Languages tab, then the Details... button. Click the Key Settings... button. Double-click each entry in the "Hot keys for input l …
7
votes
How can I run Cygwin Bash Shell from within Emacs?
shell-file-name is the variable that controls which shell Emacs uses when it wants to run a shell command.
explicit-shell-file-name is the variable that controls w …
8
votes
goto-file in emacs
You want the find-file-at-point function (which is also aliased to ffap). It's not bound to a key by default, but you can use
M-x ffap
O …
3
votes
How to refer to the file currently being loaded in Emacs Lisp?
M-x describe-variable load-file-name
load-file-name is a variable defined in `C source code'.
Documentation:
Full name of file being loaded by `load'.
…
1
vote
real link in html-mode emacs
I'm not sure I understand the question. You appear to be saying that Emacs is displaying src="index_new_menus_files/menu_bg_2.gif" in the buffer, but is saving it as src="images …
