mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-03-18 08:09:40 +00:00
fix(yazi): update plugins
This commit is contained in:
21
config/yazi/plugins/vidir.yazi/LICENSE
Normal file
21
config/yazi/plugins/vidir.yazi/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Kristofers Solo
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
29
config/yazi/plugins/vidir.yazi/README.md
Normal file
29
config/yazi/plugins/vidir.yazi/README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# vidir.yazi
|
||||
|
||||
This plugin is a bulk-rename plugin using [vidir](https://linux.die.net/man/1/vidir).
|
||||
|
||||
## Requirements
|
||||
|
||||
- [yazi >= v25.2.7](https://github.com/sxyazi/yazi)
|
||||
- [vidir](https://linux.die.net/man/1/vidir) (sometimes included in [moreutils](https://man.archlinux.org/listing/extra/moreutils/) package)
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
ya pack -a kristoferssolo/vidir
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Add this to your `~/.config/yazi/keymap.toml`:
|
||||
|
||||
```toml
|
||||
[[manager.prepend_keymap]]
|
||||
on = "B"
|
||||
run = [ "escape --visual", "plugin --sync vidir" ]
|
||||
desc = "Bulk rename with vidir"
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
This plugin is MIT-licensed. For more information check the [LICENSE](LICENSE) file.
|
||||
9
config/yazi/plugins/vidir.yazi/main.lua
Normal file
9
config/yazi/plugins/vidir.yazi/main.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
--- @sync entry
|
||||
--- @since 25.2.7
|
||||
|
||||
return {
|
||||
entry = function()
|
||||
-- If no selection, use current directory (.)
|
||||
ya.manager_emit("shell", { "vidir .", block = true, confirm = true })
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user