Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.2 KiB

  1. ;;; tiny-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "tiny" "tiny.el" (0 0 0 0))
  7. ;;; Generated autoloads from tiny.el
  8. (autoload 'tiny-expand "tiny" "\
  9. Expand current snippet.
  10. It polls the expander functions one by one
  11. if they can expand the thing at point.
  12. First one to return a string succeeds.
  13. These functions are expected to set `tiny-beg' and `tiny-end'
  14. to the bounds of the snippet that they matched.
  15. At the moment, only `tiny-mapconcat' is supported.
  16. `tiny-mapconcat2' should be added to expand rectangles." t nil)
  17. (autoload 'tiny-helper "tiny" "\
  18. Helper function for `tiny-expand'.
  19. The arguments to this function construct a tiny expression
  20. \"mBSEO|F\" where
  21. E is the end value (END-VAL) - defaults to 0 internally if nil or \"\",
  22. or 9 if BEGIN-VAL is nil or \"\" too.
  23. B is the begin value (BEGIN-VAL) - defaults to 0 internally if nil or \"\".
  24. S is the separator (SEP) - defaults to \" \" if nil or \"\".
  25. O is the elisp operation (OP) - defaults to \"\" if nil.
  26. F is the format (FMT) - defaults to \"\" if nil.
  27. If `tiny' expansion is possible at point, do it.
  28. Otherwise activate the helper to generate a valid tiny
  29. expression and expand that.
  30. Usage: Call TINY-HELPER, -> 0 1 2 3 4 5 6 7 8 9
  31. Call TINY-HELPER, 92_+1*x2 -> 5_7_9_11_13_15_17_19
  32. Call TINY-HELPER, 151-30*2x%x -> 1c 1a 18 16 14 12 10 e c a 8 6 4 2 0
  33. \(fn &optional END-VAL BEGIN-VAL SEP OP FMT)" t nil)
  34. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tiny" '("tiny-")))
  35. ;;;***
  36. ;;;### (autoloads nil "tiny-test" "tiny-test.el" (0 0 0 0))
  37. ;;; Generated autoloads from tiny-test.el
  38. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tiny-test" '("with-text-value")))
  39. ;;;***
  40. ;;;### (autoloads nil nil ("tiny-pkg.el") (0 0 0 0))
  41. ;;;***
  42. ;; Local Variables:
  43. ;; version-control: never
  44. ;; no-byte-compile: t
  45. ;; no-update-autoloads: t
  46. ;; coding: utf-8
  47. ;; End:
  48. ;;; tiny-autoloads.el ends here