0
votes
How do you beat RSI?
In addition to the other tips, spend some time observing how you use Emacs and thinking about what commands you need to remap to minimize stress. For inspiration, see Erik Naggum's …
4
votes
Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path
(let ((base "~/Projects/emacs"))
(add-to-list 'load-path base)
(dolist (f (directory-files base))
(let ((name (concat base "/" f)))
(when (and (file-directory-p name)
…
3
votes
Why are fixnums in emacs only 29 bits?
Others have commented on why fixnums are only 29 bits wide. But if you want a programmer's calculator, check out calc. It of …
1
vote
How do I pass a function as a parameter to in elisp?
The note at the end of this page says that you can quote functions with #' instead of …
2
votes
determining the line terminator in emacs
If it says (DOS) on the modeline when you open the file on Unix, the line endings are Windows-style. If it says (Unix) when you open the file on Windows, the line endings are Unix-style.
Fr …
4
votes
defining new tooltips in emacs
Your Emacs installation should include the Elisp reference manual (if not, download it now - you're going to need it …
2
votes
Where is the current version of the Emacs calc?
In the Emacs CVS tree. See the calc page and the Emacs proj …
0
votes
Emacs Command to Delete Up to Non-Whitespace Character
Specifically, is there a command that will delete all whitespace from the point to the first non-whitespace character?
There's a command that does almost that: …
2
votes
How do I get emacs to fill sentences, but not paragraphs?
If you put a comment marker at the end of each sentence, Emacs knows not to move the next line inside the comment:
chat chat chat.%
A new sentence
with goofed up wrapping that needs …
9
votes
Remotely Programming
One option is to use the TRAMP remote-editing package (built into Emacs 22 and newer, and you can install it into older versions). Ev …
4
votes
How do I get a list of Emacs lisp non-interactive functions?
Here's the basic idea - see the Emacs Lisp manual for any unclear concepts.
(flet ((first-line (text …
0
votes
emacs javascript auto indentation
Set javascript-auto-indent-flag to nil before loading javascript-mode. You can either add a line to your .emacs file or type
M-x customize-gro …
4
votes
Emacs ESS Mode - Tabbing for Comment Region
Either
(setq ess-fancy-comments nil)
if you never want to indent single-# comments, or
(add-hook 'ess-mode-hook
(lambda () …
2
votes
How can I make emacs start-up faster?
One thing that others haven't mentioned is to include the elisp libraries you use as part of the dum …
1
vote
Preferring certain file extensions with Emacs file name completion
If you are open to installing a large-ish library and reading some documentation, you could take a look at Icicles and define a …
