-
What the .emacs.d!?
"People talk about getting used to a new editor, but over time, it is
precisely the opposite that should happen - the editor should get used
to us."
- Vivek Haldar
Switching between the two most...
-
What the .emacs.d!?
Behold the very first lines in my
.emacs.d/init.el:
;; Turn off mouse interface early in startup to avoid momentary display
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))
(if (fboundp 'tool-bar-m...
-
What the .emacs.d!?
Now that Emacs has moved to git, maybe it's time to start
contributing directly? Here's how you build Emacs from source on OS X:
git clone git://git.savannah.gnu.org/emacs.git
cd emacs
./autogen.s...
-
What the .emacs.d!?
There are lots of neat ways of moving around quickly in a buffer.
;; Move more quickly
(global-set-key (kbd "C-S-n")
(lambda ()
(interactive)
(igno...
-
What the .emacs.d!?
What are those line numbers for anyway?
(global-set-key [remap goto-line] 'goto-line-with-feedback)
(defun goto-line-with-feedback ()
"Show line numbers temporarily, while prompting for the line n...
-
What the .emacs.d!?
Undo in region is one of those mind-blowing things about emacs.
However, the region keeps jumping about when I use it. So I added this:
;; Keep region when undoing in region
(defadvice undo-tree-u...