7
votes
Why are Vi and Emacs popular ?
I'm semi-competent with vi keybindings, but I prefer Emacs overall. The reason these editors have such fervent adherents is because the editing model they provide is more powerful than new …
2
votes
How do I see the list of open files within emacs? Or browse a directory within emacs?
"C-x d" accesses the directory editor. "C-x C-f" will do it as well if you give it a directory instead of a file.
There's also IBuffer mode, which lets you deal with your open buffers in a …
-1
votes
how to get emacs to unwrap a block of code
Your mode may support this already. In C mode and Makefile mode, at least, M-q (fill-paragraph) will insert line continuations in the fill-column and wrap your lines.
What mode are you edit …
1
vote
Getting Emacs fill-paragraph to play nice with javadoc-like comments
There's other modes that have less complex functions used for fill-paragraph-function. Browsing through my install, it looks like the ones in ada-mode and make-mode are good examples. …
2
votes
How do I duplicate a whole line in Emacs?
@[Kevin Conner]: Pretty close, so far as I know. The only other thing to consider is turning on kill-whole-line to include the newline in the C-k.
…
5
votes
Glasses mode in emacs.
There's no option to set the face for the inserted separator (and from a brief study of the docs for emacs overlays, I don't think it's simple to add).
You can customize the face used for t …
10
votes
Is it possible to have an alias for the function name in lisp?
You want defalias. (defalias 'newname oldname) will preserve documentation and even show "newname is an alias for `oldname'" when its documentation is requested.
…
10
votes
Uses for both static strong typed languages like Haskell and dynamic (strong) languages like Common LIsp
Programming languages are tools for thinking with. You can express any program in any language, if you're willing to work hard enough. The chief value provided by one programming language over anot …
3
votes
extended REs in emacs lgrep?
If you use a C-u prefix to M-x lgrep, you can edit the resulting command line before it's executed. grep-command is the default command string used by Emacs' …
4
votes
How do I do closures in Emacs lisp?
Emacs lisp only has dynamic scoping. There's a lexical-let macro that approximates lexical scoping through a rather terrible hack.
…
2
votes
Emacs reselect region, as Vim shortcut ‘gv’ does
If Transient Mark mode is off, the region is always active. If it's on (which it sounds like is your situation), you can set mark-even-if-inactive to non-nil to allow region commands t …
4
votes
Display same file successive pages on Emacs split screen
This question appears to be a duplicate: http://stackoverflow.com/questions/970292/emacs-multiple-columns-one-b …
5
votes
Emacs Wishlist
An implementation of elisp that's not 1985's state of the art. I mean, seriously -- global variables everywhere? A non-reentrant parser? It's like they don't want people to work on it. I b …
1
vote
What specific productivity gains does vim/emacs provide over GUI text editors?
I'm semi-competent with vi keybindings, but I prefer Emacs overall. The reason these editors have such fervent adherents is because the editing model they provide is more powerful than newer system …
