diff options
| author | Antoine Bertin <antoine@bertin.io> | 2022-10-08 09:10:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-08 09:10:26 +0200 |
| commit | 5fadc247c56e739d9c5c30a484fd291bb87bd378 (patch) | |
| tree | 64da70c20d21f34f41d9455274b2c697e4856667 /lua/telescope/utils.lua | |
| parent | 3a29c1e89d6c489dd8b08d7738ba679bfecee5c4 (diff) | |
fix: selected icon highlight with color_devicons to false (#2187)
Diffstat (limited to 'lua/telescope/utils.lua')
| -rw-r--r-- | lua/telescope/utils.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/telescope/utils.lua b/lua/telescope/utils.lua index 73f702e..dcc3276 100644 --- a/lua/telescope/utils.lua +++ b/lua/telescope/utils.lua @@ -452,7 +452,7 @@ utils.transform_devicons = load_once(function() if conf.color_devicons then return icon_display, icon_highlight else - return icon_display, "TelescopeResultsFileIcon" + return icon_display, nil end end else @@ -480,7 +480,7 @@ utils.get_devicons = load_once(function() if conf.color_devicons then return icon, icon_highlight else - return icon, "TelescopeResultsFileIcon" + return icon, nil end end else |
