home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / FREEMACS / EMACS16A.ZIP / LISP.EDD < prev    next >
Text File  |  1990-02-02  |  1KB  |  55 lines

  1.  
  2.  
  3. Name:L:backward-sexp
  4. Move to the beginning of the current s-expression
  5. [*]
  6.  
  7. Name:L:forward-sexp
  8. Move to the end of the current s-expression
  9. [*]
  10.  
  11. Name:L:kill-sexp
  12. Kill from the point to the end of the current s-expression
  13. [*]
  14.  
  15. Name:L:lisp-indent
  16. Indent the current line per LISP indentation rules
  17. [*]
  18.  
  19. Name:L:lisp-newline-and-indent
  20. Newline and indent per LISP indentation rules
  21. [*]
  22.  
  23. Name:L:mark-sexp
  24. Set the mark at the end of the current s-expression and flash it
  25. [*]
  26.  
  27. Name:L:transpose-sexp
  28. Transpose the current s-expression with the one previous to it.
  29. USE ONLY WITH POINT AT START OF SEXP. comments (may) get confused
  30. [*]
  31.  
  32. Name:Lbackward-skip-lisp-nonwhite
  33. Reverses until it hits a space, open-paren; 
  34. Stops with point to right of space or open-paren
  35. [*]
  36.  
  37. Name:Lbackward-skip-lisp-string
  38. Scans backward past everything looking for a non-escaped " and stops on it
  39. [*]
  40.  
  41. Name:Lbackward-skip-lisp-white
  42. Skips over lisp whitespace, including commented lines 
  43. [*]
  44.  
  45. Name:Lforward-skip-lisp-nonwhite
  46. Scans past all non-whitespace except close-paren
  47. [*]
  48.  
  49. Name:Lforward-skip-lisp-string
  50. Scans past everything looking for a non-escaped " and stops after it
  51. [*]
  52.  
  53. Name:Lforward-skip-lisp-white
  54. Scans forward past all whitespace and lisp comments
  55. [*]