5c9079a410
Manually merging: - README.md: I added the description from universe/README.md into the heading of dotfiles/README.md. - .envrc: dotfiles/.envrc was a superset of universe/.envrc - .gitignore: Adding some of the ignored patterns from universe/.gitignore to dotfiles/.gitignore Everything else here should be a simple rename.
1.9 KiB
1.9 KiB
- Paths
- f-join (&rest args)
- f-split (path)
- f-expand (path &optional dir)
- f-filename (path)
- f-dirname (path)
- f-common-parent (paths)
- f-ext (path)
- f-no-ext (path)
- f-swap-ext (path ext)
- f-base (path)
- f-relative (path &optional dir)
- f-short (path)
- f-long (path)
- f-canonical (path)
- f-slash (path)
- f-full (path)
- f-uniquify (paths)
- f-uniquify-alist (paths)
- I/O
- f-read-bytes (path)
- f-write-bytes (data path)
- f-read-text (path &optional coding)
- f-write-text(text coding path)
- f-append-text(text coding path)
- f-append-bytes(text coding path)
- Destructive
- f-mkdir (&rest dirs)
- f-delete (path &optional force)
- f-symlink (source path)
- f-move (from to)
- f-copy (from to)
- f-copy-contenst (from to)
- f-touch (path)
- Predicates
- f-exists? (path)
- f-directory? (path)
- f-file? (path)
- f-symlink? (path)
- f-readable? (path)
- f-writable? (path)
- f-executable? (path)
- f-absolute? (path)
- f-relative? (path)
- f-root? (path)
- f-ext? (path ext)
- f-same? (path-a path-b)
- f-parent-of? (path-a path-b)
- f-child-of? (path-a path-b)
- f-ancestor-of? (path-a path-b)
- f-descendant-of? (path-a path-b)
- f-hidden? (path)
- f-empty? (path)
- Stats
- f-size (path)
- f-depth (path)
- Misc