Search Results

3
votes

What is the difference between find-grep and grep-find?

You can use M-x describe-function (or C-h f with default keybindings) to answer this question, here's the output for find-grep: find-grep is a …
1
vote

How do I highlight cvs changes in emacs?

You want vc-diff, which is on C-x v = by default. This gives you raw diff output in a temp buffer. The buffer uses diff-mode, which has a few neat tricks ... for example, …
2
votes

How do decode URL in Emacs Lisp?

org-link-unescape does the job for very simple cases ... w3m-url-decode-string is better, but it isn't built in and the version I have locally isn't working with Emacs 23. …
0
votes

How to scroll line by line in GNU emacs ?

I rebind my arrow keys to perform scrolling operations. (global-set-key [up] (lambda () (interactive) (scroll-down 1))) (global-set-key [down] (lambda () (interactive) (scroll-up 1) …
3
votes

Preferred JavaScript mode for emacs? Is it js2-mode from Yegge?

I use js2-mode for JavaScript authoring, and it's excellent. It's not ideal for JavaScript-like languages, though (ActionScript), so it's good to have a simple mode around as a backup for those cas …
3
votes

How do I jump to the matching tag, when editing editing HTML in Emacs?

Assuming you're using nxml-mode: C-M-n runs the command nxml-forward-element, which is an interactive compiled Lisp function in `nxml-mode.el'. It is bound to C-M-n. (nxml-forward …
0
votes

XML mode for XEmacs?

I used PSGML mode via XEmacs for several years and it is excellent. No support for RELAX NG, but terrific for anything you can dig up a DTD for. …
1
vote

Referring to MS Windows special folders in Emacs

I use %USERPROFILE% as my home directory, so Desktop is always available as ~/Desktop. Easiest way to do this is to set HOME to match USERPROFILE. Detailed in …