>Stephane wrote: > > > Hello all, > > > > I plan to give a coure about jde and to introduce this IDE to my new >pupills > > next january. > > What would you show to emacs-beginners ? Sorry to reply so late. Here are my favorite functions:
;; * Do M-x jde-sort-imports to sort the import statements. ;; * C-. to complete a method name ;; * C-c C-v j to javadoc a class, method, or variable. ;; * M-x jde-import-kill-extra-imports ;; * M-x jde-import-organize: This command groups and sorts a buffer's ;; import statements according to rules that you specify. ;; * \C-u \C-[space] to return to previous cursor locations. (Emacs ;; feature) ;; * Spell check comments: M-x ispell-comments-and-strings. ;; * TAB either completes a word (based on words found in all open ;; buffers) or jumps to the appropriate. indentation. (Custom wrote ;; feature for JDE). You can also manually ;; * Hippie-expand ;; * Cycle through the "clipboard": C-y M-y M-y ... M-y. (Emacs ;; feature) ;; * M-C-a jumps to the beginning of the current method, M-C-e jumps ;; to the end. ;; * Many templates, such as, get/set accessors, main(), etc. ;; * C-l. (Think about it! How useful is it? How many editors have ;; this functionality?) ;; * Remove ^M (control-M, decimal 13) characters from the file by ;; doing M-x remove-ctlm. (Custom wrote feature for Emacs) _________________________________________________________________ Join the world�s largest e-mail service with MSN Hotmail. http://www.hotmail.com
