Function: f-long
f-long is a byte-compiled function defined in f.el.
Signature
(f-long PATH)
Documentation
Return long version of PATH.
Other relevant functions are documented in the f group.
Shortdoc
;; f
(f-long "~/Code/bar")
=> "/root/Code/bar"
(f-long "/path/to/Code/bar")
=> "/path/to/Code/bar"
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-long (path)
"Return long version of PATH."
(f-expand path))