diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-10-05 23:32:17 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-10-08 13:08:32 +0530 |
| commit | 41d8a90746cd97d1dcb8228c1e9a0846ba9d9b6a (patch) | |
| tree | 942f95367163ad967323ba41f8a400b654e99688 /lib/Daffm/Attrs.hs | |
| parent | 424d65e53b99c65f07f36578e3d0975c4d093c0e (diff) | |
| download | daffm-41d8a90746cd97d1dcb8228c1e9a0846ba9d9b6a.tar.gz daffm-41d8a90746cd97d1dcb8228c1e9a0846ba9d9b6a.zip | |
Add search command
Diffstat (limited to 'lib/Daffm/Attrs.hs')
| -rw-r--r-- | lib/Daffm/Attrs.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Daffm/Attrs.hs b/lib/Daffm/Attrs.hs index 77f9ee6..d7b7097 100644 --- a/lib/Daffm/Attrs.hs +++ b/lib/Daffm/Attrs.hs @@ -18,6 +18,9 @@ directoryAttr = listAttr <> A.attrName "directory" directorySelectedAttr :: A.AttrName directorySelectedAttr = listSelectedAttr <> directoryAttr +searchMarchAttr :: A.AttrName +searchMarchAttr = listAttr <> A.attrName "match-indicator" + appAttrMap :: A.AttrMap appAttrMap = A.attrMap @@ -27,5 +30,6 @@ appAttrMap = (directoryAttr, fg V.brightCyan), (directorySelectedAttr, fg V.brightCyan), (fileAttr, fg V.white), - (fileSelectedAttr, fg V.white) + (fileSelectedAttr, fg V.white), + (searchMarchAttr, fg V.magenta) ] |
