I’ve placed the dired plus file in ~/.emacs.d, added (require 'dired+) to my ~/.emacs file and restarted Emacs. How do I launch dired plus?
I’ve placed the dired plus file in ~/.emacs.d , added (require ‘dired+) to my
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Dired+ adds functionality to dired, so you don’t launch Dired+ as such – just run dired as you would normally (e.g.
M-x dired) and the added functionality should be available.If Dired+ isn’t loading, make sure that
~/.emacs.dis in your load-path – add this line to your init file if necessary:Edit: As event_jr says, you should avoid adding
.emacs.dto yourload-path– create a new directory in~/.emacs.d, install your Emacs Lisp files there, and add that directory toload-path. My answer was intended to fix your immediate problem, given where you’d installed the Dired+ file, not a recommendation to install packages in~/.emacs.d.