emacs

TwitterFacebook
Get flash to fully experience Pearltrees
org-mode

manuel emacs partiellement traduit

http://www.linux-france.org/article/appli/emacs/manuel/html/index.html 5.1. Point 5.2. La zone de répercussion 5.3. La ligne de mode 5.4. La Barre de Menu 5.5.
Artist mode, toggled by M-x artist-mode , lets you draw lines, squares, rectangles and poly-lines, ellipses, and circles with your mouse and/or keyboard. It is extremely useful when inserting text diagrams or figures in your source comments. C-x n n to narrow the region, `narrow-to-region'. It is very useful to prevent the unwanted change on other portion of the buffer, and makes the user concentrating on what he or she want to do. The narrowing is reverted by the command, C-x n w `widen'.

Emacs Screencast: Artist Mode

http://www.cinsk.org/emacs/emacs-artist.html
Ce tutorial est destiné aux gens souhaitant se familiariser avec GNU Emacs. Si vous avez davantage de questions, vous pouvez les poser sur forum dans le conti ens.forum.informatique.editeurs.emacs . Pour savoir comment poster sur forum et le lire, lisez la documentation à ce sujet . Un aide-mémoire des principales commandes d'emacs est également disponible. Emacs est un éditeur de texte très puissant, qui est également capable de beaucoup d'autres choses (invoquer une commande shell, envoyer ou recevoir du courrier électronique, lire les news, se transformer en psy, et même faire le café selon certaines mauvaises langues). http://www.tuteurs.ens.fr/unix/editeurs/emacs.html#s3_3

Emacs

http://www.emacswiki.org/emacs/CategoryCode “sometimes i feel like we’re making emacs better and better because we don’t know what to do with emacs once it is finished.” – AlexSchroeder on InternetRelayChat Click the heading to search for all pages belonging to the writing of Lisp code. These pages contain information for would-be authors of new major and minor modes: EmacsLisp style, coding conventions, pointers and documentation to existing features.

Category Code

Assume you want to replace all occurences of ‘foo’ with ‘bar’ , ‘baz’ , ‘quux’ , and so on. You want to cycle through the replacements: (let ((master '("bar" "baz" "quux")) (items)) (while (search-forward "foo" nil t) (replace-match (or (car items) (car (setq items master)))) (setq items (cdr items)))) The code above has a master list of replacements and a working copy called ‘items’ . It will use the first item in the list of items, or get a copy of the master list and use that. Then it shortens the list by one item and loops.

Circular Lists

http://www.emacswiki.org/emacs-en/CircularLists