Questions tagged [emacs]

GNU Emacs is an extensible, customizable text editor written primarily in Emacs Lisp.

GNU Emacs is an extensible, customizable text editor. Begun in the mid-1970s as TECO, it was re-written using C and Emacs Lisp to provide portability and an extendable interface. It continues to be actively developed today.

Emacs provides context-sensitive editing modes with syntax coloring, is self documenting, has full Unicode support and extensions to do most anything. Die-hard Emacs users do most everything from within Emacs: write, compile, run and debug code; read/compose email; browse the web; do project planning etc.

Useful Links

Wisdom from the stack

15 questions
1
vote
1 answer

Unable to have a Vim-like keybinding in Emacs

I want to replace the command for moving between windows in Emacs to Ctrl-t The command in pseudo-code (global-set-key "\C-moveBetweenWindows" 'C-t) How can you remap the command for moving between windows in Emacs?
0
votes
1 answer

Shorten Emacs timeout of ~/.emacs read

My ~/.emacs start-up file is stored in my AFS home directory. Often when I login to a linux machine I will forget to renew my AFS credentials before attempting to edit a local (non-AFS) file with Emacs. When this happens Emacs will attempt to load…
user35042
  • 2,711
0
votes
2 answers

Unable to understand a stty option for Emacs in OS/X

Steve recommends to run the following code before you start your Emacs stty erase ^\? I get after running it stty: illegal option -- Backups usage: stty [-a|-e|-g] [-f file] [options] Steve's blog post Note that the ^\? - - dorks the Delete key…