Add f.el autoloads to core-lib

This commit is contained in:
Henrik Lissner 2017-02-20 19:44:06 -05:00
parent 047ea64e99
commit 2569774a3b
2 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,18 @@
s-lower-camel-case s-upper-camel-case s-snake-case s-dashed-words
s-capitalized-words s-titleized-words s-word-initials))
(mapc (lambda (sym) (autoload sym "f"))
'(f-join f-split f-expand f-filename f-dirname f-common-parent f-ext
f-no-ext f-swap-ext f-base f-relative f-short f-long f-canonical f-slash
f-full f-uniquify f-uniquify-alist f-read-bytes f-write-bytes
f-read-text f-write-text f-append-text f-append-bytes f-mkdir f-delete
f-symlink f-move f-copy f-copy-contenst f-touch f-exists? f-directory?
f-file? f-symlink? f-readable? f-writable? f-executable? f-absolute?
f-relative? f-root? f-ext? f-same? f-parent-of? f-child-of?
f-ancestor-of? f-descendant-of? f-hidden? f-size f-depth f-this-file
f-path-separator f-glob f-entries f-directories f-files f-root
f-traverse-upwards f-with-sandbox))
;;
;; Library

View File

@ -4,6 +4,7 @@
;; core packages
(@package async)
(@package s)
(@package f)
;; core-os.el
(when IS-MAC