Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a customize variable for lighter #57

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
8e8fcc9
make icons use same color as the text
wyuenho Mar 28, 2020
9d568c1
Refresh icons after directory creation
gexplorer Nov 26, 2020
ea89557
Refresh icons after rename
gexplorer Nov 26, 2020
785cf50
Display icons in find-dired output
eigengrau Jan 9, 2021
25396c3
Merge remote-tracking branch 'gexplorer/master'
wyuenho Feb 11, 2021
de07052
Merge remote-tracking branch 'eigengrau/master'
wyuenho Feb 11, 2021
c95dfd9
Remove check to detect display
wyuenho Feb 11, 2021
2123f78
Refactor advices
wyuenho Feb 11, 2021
dd68516
Fork notice
wyuenho Feb 27, 2021
6d43406
kill-local-variable takes symbol causing deactivating of all-the-icon…
lordpretzel Mar 2, 2021
f401fe2
Merge pull request #2 from lordpretzel/master
wyuenho Mar 2, 2021
0b929d2
Update URL and copyright notice
wyuenho Apr 8, 2021
07f035d
Fix #3 ensure case-fold-search under dired
wyuenho Apr 11, 2021
5408e17
Update issue templates
wyuenho Apr 12, 2021
dd7dd27
Add note on how to get backtrace
wyuenho Apr 12, 2021
82d09a3
Fix void var file error
wyuenho Apr 16, 2021
65e15ec
Refresh icons when aborting wdired
jacobilsoe Apr 21, 2021
f0bad10
Fixed typo
jacobilsoe Apr 21, 2021
a294f45
Merge pull request #5 from jacobilsoe/refresh-on-wdired-abort
wyuenho Apr 22, 2021
a758766
Version 2.0
wyuenho Jun 14, 2021
42d8d28
Add support for `dired-subtree`
nagy Jul 31, 2021
7c42693
Refresh on dired-kill-subdir
pkulev Oct 1, 2021
9eb119e
Merge pull request #7 from nagy/dired-subtree
wyuenho Oct 1, 2021
8374033
Merge pull request #8 from pkulev/refresh-on-dired-kill-subdir
wyuenho Oct 7, 2021
46ca704
Return result of adviced functions
wyuenho Oct 7, 2021
5e9b097
Use prog1
wyuenho Oct 7, 2021
de9b14c
Fix #10 put icon before file name during redisplay
wyuenho Mar 4, 2022
147ed0d
Fix #14 dired-do-redisplay is in dired-aux
wyuenho Mar 4, 2022
ed9d34f
Use text properties instead of overlays
Jun 2, 2022
0dfb59f
Only add icons after `dired-subdir-alist` is set
Jun 20, 2022
37578ab
Fix docstring
wyuenho Jun 20, 2022
b5d3af1
Merge pull request #17 from aikrahguzar/master
wyuenho Jun 20, 2022
385fcbc
Experimental SVG icon support
wyuenho Sep 4, 2022
8adb5fa
use font lock to set icons
wyuenho Sep 29, 2022
78096c2
Refontify after setup and teardown
wyuenho Sep 29, 2022
ef84300
fix docstrings
wyuenho Sep 29, 2022
bcaed35
add requires
wyuenho Sep 29, 2022
4564bec
add cask file
wyuenho Sep 29, 2022
4b8ed87
Add a customize variable for lighter
Jan 3, 2023
c8fedda
Merge branch 'master' into customize-lighter
Jan 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Display icons in find-dired output
find-dired is not covered by any of the existing advice, so no refresh will be
triggered.

Since find-dired runs find in a subprocess, we advise the process sentinel
instead of find-dired itself.

Resolves #48
eigengrau committed Jan 9, 2021
commit 785cf508c45399fb1bcb5495f2e189bfa5ae78b3
3 changes: 3 additions & 0 deletions all-the-icons-dired.el
Original file line number Diff line number Diff line change
@@ -34,6 +34,7 @@

(require 'cl-lib)
(require 'dired)
(require 'find-dired)
(require 'all-the-icons)

(defface all-the-icons-dired-dir-face
@@ -107,6 +108,7 @@
(advice-add 'dired-internal-do-deletions :around #'all-the-icons-dired--refresh-advice)
(advice-add 'dired-insert-subdir :around #'all-the-icons-dired--refresh-advice)
(advice-add 'dired-do-kill-lines :around #'all-the-icons-dired--refresh-advice)
(advice-add 'find-dired-sentinel :around #'all-the-icons-dired--refresh-advice)
(with-eval-after-load 'dired-narrow
(advice-add 'dired-narrow--internal :around #'all-the-icons-dired--refresh-advice))
(all-the-icons-dired--refresh)))
@@ -119,6 +121,7 @@
(advice-remove 'dired-narrow--internal #'all-the-icons-dired--refresh-advice)
(advice-remove 'dired-insert-subdir #'all-the-icons-dired--refresh-advice)
(advice-remove 'dired-do-kill-lines #'all-the-icons-dired--refresh-advice)
(advice-remove 'find-dired-sentinel #'all-the-icons-dired--refresh-advice)
(all-the-icons-dired--remove-all-overlays))

;;;###autoload