dired-sidebar
dired-sidebar copied to clipboard
Sidebar for Emacs leveraging Dired
Hi! I recently upgraded the version of dired-sidebar and I noticed it changed how the font looks, particularly it seems like it doesn't "inherit" the font I use elsewhere and...
I've use something like the following to [rename by dired buffers](https://emacs.stackexchange.com/a/2154/2051): ```elisp (add-hook 'dired-after-readin-hook (lambda () (rename-buffer (generate-new-buffer-name (concat "dired: " dired-directory))))) ``` When I set `dired-sidebar-theme` this goes totally...
On emacs27 (commit : fbe87d0f8f8878b30b1dfe74f7eb369b569bab6b), pressing "a" (dired-find-alternate-file) will not work and message with "cannot make side window the only window" On emacs27 (commit : 020e69d992c98fd852e835c9bd707a8d137090f2), dired will create new...
Multiple frames may use the same sidebar buffer. This isn't that big of a deal other than that editing one of those buffers will edit the other one too. Maybe...
desktop-save-mode works with one frame using dired but supporting multiple frames is trickier due to frames being restored *after* buffers are restored. This has some good information on workarounds. https://github.com/Alexander-Miller/treemacs/issues/101...
Copy something like: ``` (defun media-thumbnail-dired--display () "Display the icons of files in a Dired buffer." (interactive) (remove-images (point-min) (point-max)) (let ((inhibit-read-only t)) (save-excursion (goto-char (point-min)) (while (not (eobp)) (when...
I encountered an issue with folders named "2022", etc. After closer investigation, it turned out that the regular expression was actually matching the modification year in the output of `ls'....
I like the idea of using dired as a sidebar thing in Emacs, since I like the shortcuts and operations one can use in `dired`. However, when I used `neotree`,...
Even if I have ` (customize-set-variable 'dired-sidebar-use-custom-font t) ` in my init file, sidebar fails to inherit my font. I found out that removing ` (buffer-face-mode-invoke 'variable-pitch t) ` in...
Showing up symlink destination making tree too wide to be displayed properly. How can I turn it off?