Skip to content

Commit b79d4bc

Browse files
committed
Use eza instead of exa
Exa is no longer maintained.
1 parent a01650c commit b79d4bc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fifc can use modern tools if available:
5959
| [chafa](https://github.com/hpjansson/chafa) | file | Preview images, gif, pdf etc | `$fifc_chafa_opts` |
6060
| [hexyl](https://github.com/sharkdp/hexyl) | file | Preview binaries | `$fifc_hexyl_opts` |
6161
| [fd](https://github.com/sharkdp/fd) | find | Complete paths | `$fifc_fd_opts` |
62-
| [exa](https://github.com/ogham/exa) | ls | Preview directories | `$fifc_exa_opts` |
62+
| [eza](https://github.com/eza-community/eza) | ls | Preview directories | `$fifc_eza_opts` |
6363
| [ripgrep](https://github.com/BurntSushi/ripgrep) | pcregrep | Search options in man pages | - |
6464
| [procs](https://github.com/dalance/procs) | ps | Complete processes and preview their tree | `$fifc_procs_opts` |
6565
| [broot](https://github.com/Canop/broot) | - | Explore directory trees | `$fifc_broot_opts` |
@@ -76,7 +76,7 @@ Show hidden file by default:
7676

7777
- `set -U fifc_fd_opts --hidden`
7878

79-
⚠️ Don't use quotes in variables, set them as a list: `set -U fifc_exa_opts --icons --tree`
79+
⚠️ Don't use quotes in variables, set them as a list: `set -U fifc_eza_opts --icons --tree`
8080

8181
## 🛠️ Write your own rules
8282

functions/_fifc_preview_dir.fish

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function _fifc_preview_dir -d "List content of the selected directory"
2-
if type -q exa
3-
exa --color=always $fifc_exa_opts $fifc_candidate
2+
if type -q eza
3+
eza --color=always $fifc_eza_opts $fifc_candidate
44
else
55
ls --color=always $fifc_ls_opts $fifc_candidate
66
end

0 commit comments

Comments
 (0)