diff options
Diffstat (limited to 'paredit.el')
-rw-r--r-- | paredit.el | 28 |
1 files changed, 9 insertions, 19 deletions
@@ -44,33 +44,23 @@ ;;; "Turn on pseudo-structural editing of Lisp code." ;;; t) ;;; -;;; Enable Paredit Mode on the fly with `M-x enable-paredit-mode RET', -;;; or always enable it in a major mode `M' (e.g., `lisp') with: +;;; Start Paredit Mode on the fly with `M-x paredit-mode RET', or +;;; always enable it in a major mode `M' (e.g., `lisp') with: ;;; ;;; (add-hook M-mode-hook 'enable-paredit-mode) ;;; ;;; Customize paredit using `eval-after-load': ;;; ;;; (eval-after-load 'paredit -;;; '(progn ...redefine keys, &c....)) +;;; '(progn +;;; (define-key paredit-mode-map (kbd "ESC M-A-C-s-)") +;;; 'paredit-dwim))) ;;; -;;; Paredit should run in GNU Emacs 21 or later and XEmacs 21.5 or -;;; later. Paredit is highly unlikely to work in earlier versions of -;;; GNU Emacs, and it may have obscure problems in earlier versions of -;;; XEmacs due to the way its syntax parser reports conditions, as a -;;; result of which the code that uses the syntax parser must mask all -;;; error conditions, not just those generated by the syntax parser. -;;; -;;; Questions, bug reports, comments, feature suggestions, &c., may be -;;; addressed via email to the author's surname at mumble.net or via -;;; IRC to the user named Riastradh on irc.freenode.net in the #paredit -;;; channel. +;;; Send questions, bug reports, comments, feature suggestions, &c., +;;; via email to the author's surname at mumble.net. ;;; -;;; Please contact the author rather than forking your own versions, to -;;; prevent the dissemination of random variants floating about the -;;; internet unbeknownst to the author. Laziness is not an excuse: -;;; your laziness costs me confusion and time trying to support -;;; paredit, so if you fork paredit, you make the world a worse place. +;;; Paredit should run in GNU Emacs 21 or later and XEmacs 21.5 or +;;; later. ;;; ;;; *** WARNING *** IMPORTANT *** DO NOT SUBMIT BUGS BEFORE READING *** ;;; |