Skip to content

Instantly share code, notes, and snippets.

@mullikine
Created October 16, 2019 13:06
Show Gist options
  • Save mullikine/4c8ca897706d3eea553122d84c0cbc90 to your computer and use it in GitHub Desktop.
Save mullikine/4c8ca897706d3eea553122d84c0cbc90 to your computer and use it in GitHub Desktop.
eshell-unique
(defun eshell-unique (&optional arg)
(interactive "P")
(progn
(eshell arg)
;; (rename-buffer "*eshell*" t ;; (concat "*eshell-" (substring (uuidgen-4) 0 8) "*")
;; )
(rename-buffer (concat "*eshell-" (substring (uuidgen-4) 0 8) "*")
)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment