From e106e1b572e1e93bd742fb4acef77fbfecd6f9c6 Mon Sep 17 00:00:00 2001 From: LamprosPitsillos <61395246+LamprosPitsillos@users.noreply.github.com> Date: Wed, 4 Jan 2023 14:52:14 +0200 Subject: [PATCH] Replaced `?` with file icon `?` makes it seem like some error has occurred, and since everything is an icon why not this one --- lua/oil/columns.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/oil/columns.lua b/lua/oil/columns.lua index 0b985bb..7ac894d 100644 --- a/lua/oil/columns.lua +++ b/lua/oil/columns.lua @@ -205,7 +205,7 @@ if has_devicons then local icon local hl icon, hl = devicons.get_icon(name) - icon = icon or "?" + icon = icon or "" return { icon .. " ", hl } end end,