Raveen Kumar

Emacs File-info package

Found a new package today. Does exactly what I want. List and copy the file info and path with a keybind and a popup window.

https://github.com/Artawower/file-info.el

Installation:

Add this to you init.el file

;; File-info
(use-package hydra
  :straight t)
(use-package browse-at-remote
  :straight t)
(use-package posframe
  :straight t)
(use-package file-info
  :straight (:host github :repo "artawower/file-info.el")
  :bind (("C-c f i" . 'file-info-show))
  :config
  (setq hydra-hint-display-type 'posframe)
  (setq hydra-posframe-show-params `(:poshandler posframe-poshandler-frame-center
                                               :internal-border-width 2
                                               :internal-border-color "#61AFEF"
                                               :left-fringe 16
                                               :right-fringe 16)))

#Emacs #Elisp #Emacs-Lisp