On Mon, Jan 16, 2006 at 01:36:49AM +0100,
Rakotomandimby Mihamina <mihamina.rakotomandimby@xxxxxxxxxxxxxxxxxxx> wrote
a message of 30 lines which said:
> How to know the usefull shortcuts of nXML-mode?
Standard Emacs way:
C-h m (and you get the mode-specific help)
Another technique that I like:
M-x nxml-<TAB>
and you have all the functions that start with "nxml-". When you
execute one, you have the current key binding indicated.
You can also add your own bindings or change the existings. Since I
like <TAB> for completion, I did:
(add-hook 'nxml-mode-hook
(lambda ()
(define-key nxml-mode-map [(tab)] 'nxml-complete)))
> Just for exampe, C-x C-t was "add tag" in the html-mode,
< then nxml-complete (<TAB> in my case, I don't remember what the
default is but you can use the above technique with M-x).
> I dont really master Emacs
This is clearly a problem: nxml is an Emacs mode and therefore is
useful only if you know and like Emacs.
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/emacs-nxml-mode/
<*> To unsubscribe from this group, send an email to:
emacs-nxml-mode-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|