feat(eza): add hyperlink option (#12545)

master
Benedikt Volkmer 2 years ago committed by GitHub
parent 608d62b2a5
commit 5b37e218e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      plugins/eza/README.md
  2. 3
      plugins/eza/eza.plugin.zsh

@ -90,6 +90,16 @@ Sets the `--time-style` option of `eza`. (See `man eza` for the options)
Default: Not set, which means the default behavior of `eza` will take place.
### `hyperlink`
```zsh
zstyle ':omz:plugins:eza' 'header' yes|no
```
If `yes`, always add `--hyperlink` flag to create hyperlink with escape codes.
Default: `no`
## Aliases
**Notes:**

@ -38,6 +38,9 @@ function _configure_eza() {
if [[ $_val ]]; then
_EZA_TAIL+=("--time-style='$_val'")
fi
if zstyle -t ":omz:plugins:eza" "hyperlink"; then
_EZA_TAIL+=("--hyperlink")
fi
}
_configure_eza

Loading…
Cancel
Save