https://github.com/tyarel8/whide.yazi
Yazi plugin to hide/unhide files in windows
https://github.com/tyarel8/whide.yazi
windows yazi yazi-plugin
Last synced: 7 months ago
JSON representation
Yazi plugin to hide/unhide files in windows
- Host: GitHub
- URL: https://github.com/tyarel8/whide.yazi
- Owner: Tyarel8
- License: mit
- Created: 2024-08-25T18:03:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-12T19:19:35.000Z (9 months ago)
- Last Synced: 2025-03-24T21:22:06.565Z (8 months ago)
- Topics: windows, yazi, yazi-plugin
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# whide.yazi
A plugin for [yazi](https://github.com/sxyazi/yazi) to hide/unhide files or folders in windows.
## Installation
```sh
ya pack -a 'Tyarel8/whide'
```
## Usage
Add this to your `keymap.toml`:
```toml
[manager]
prepend_keymap = [
{ on = [ "'", "h" ], run = "plugin whide --args='hide'", desc = "Hide files" },
{ on = [ "'", "H" ], run = "plugin whide --args='unhide'", desc = "Unhide files" },
{ on = [ "'", "" ], run = "plugin whide --args='toggle'", desc = "Toggle hidden status" },
]
```
It will apply to all selected or hovered if there is no selection.
> [!IMPORTANT]
> When hiding a file, yazi will either show the file still normal, or show the file hidden
> along with the previous normal file until you do something
> like opening a new tab or closing yazi and opening it again.