Eshell Commands
1. ll
(defun eshell/ll (&rest args) "A particular `eshell/ls' call with -lh parameters." (eshell/ls (append '("-lh") args)))
2. fun
(defun eshell/fun (&rest args) "Run a fish shell function." (eshell-command (mapconcat (lambda (x) (format "%s " x)) args))) ;; (eshell-command "fish -c "))