diff --git a/core/core-lib.el b/core/core-lib.el index 36442a773..15c3eaf72 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -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 diff --git a/core/packages.el b/core/packages.el index 7ca216748..1a33fa1ea 100644 --- a/core/packages.el +++ b/core/packages.el @@ -4,6 +4,7 @@ ;; core packages (@package async) (@package s) +(@package f) ;; core-os.el (when IS-MAC