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.

56 lines
1.7 KiB

  1. ;;; string-inflection-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 "string-inflection" "string-inflection.el"
  7. ;;;;;; (0 0 0 0))
  8. ;;; Generated autoloads from string-inflection.el
  9. (autoload 'string-inflection-ruby-style-cycle "string-inflection" "\
  10. foo_bar => FOO_BAR => FooBar => foo_bar" t nil)
  11. (autoload 'string-inflection-python-style-cycle "string-inflection" "\
  12. foo_bar => FOO_BAR => FooBar => foo_bar" t nil)
  13. (autoload 'string-inflection-java-style-cycle "string-inflection" "\
  14. fooBar => FOO_BAR => FooBar => fooBar" t nil)
  15. (autoload 'string-inflection-all-cycle "string-inflection" "\
  16. foo_bar => FOO_BAR => FooBar => fooBar => foo-bar => Foo_Bar => foo_bar" t nil)
  17. (autoload 'string-inflection-toggle "string-inflection" "\
  18. toggle foo_bar <=> FooBar" t nil)
  19. (autoload 'string-inflection-camelcase "string-inflection" "\
  20. FooBar format" t nil)
  21. (autoload 'string-inflection-lower-camelcase "string-inflection" "\
  22. fooBar format" t nil)
  23. (autoload 'string-inflection-underscore "string-inflection" "\
  24. foo_bar format" t nil)
  25. (autoload 'string-inflection-capital-underscore "string-inflection" "\
  26. Foo_Bar format" t nil)
  27. (autoload 'string-inflection-upcase "string-inflection" "\
  28. FOO_BAR format" t nil)
  29. (autoload 'string-inflection-kebab-case "string-inflection" "\
  30. foo-bar format" t nil)
  31. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "string-inflection" '("string-inflection-")))
  32. ;;;***
  33. ;; Local Variables:
  34. ;; version-control: never
  35. ;; no-byte-compile: t
  36. ;; no-update-autoloads: t
  37. ;; coding: utf-8
  38. ;; End:
  39. ;;; string-inflection-autoloads.el ends here