qs: add pinned tray entries
zsh: fix yazi: update hypridle: decided not switching to swayidle :)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
[[plugin.deps]]
|
||||
use = "yazi-rs/plugins:git"
|
||||
rev = "1db18bb"
|
||||
hash = "c8d30a70659f1b880407e61c564ab4e8"
|
||||
rev = "5d5c480"
|
||||
hash = "88e56a64b7ce7c4314427452343fef17"
|
||||
|
||||
[[plugin.deps]]
|
||||
use = "yazi-rs/plugins:smart-enter"
|
||||
rev = "1db18bb"
|
||||
rev = "5d5c480"
|
||||
hash = "187cc58ba7ac3befd49c342129e6f1b6"
|
||||
|
||||
[[plugin.deps]]
|
||||
@@ -15,8 +15,8 @@ hash = "699fe07e0d2d1b4af8dafb84168eeb04"
|
||||
|
||||
[[plugin.deps]]
|
||||
use = "KKV9/compress"
|
||||
rev = "46a6b9f"
|
||||
hash = "771af2becc575a3f43d0542de823969d"
|
||||
rev = "e60e122"
|
||||
hash = "fbaf0adc8efc59555b748d36aab62d40"
|
||||
|
||||
[[plugin.deps]]
|
||||
use = "llanosrocas/yaziline"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
--- @since 25.12.29
|
||||
--- @since 26.5.6
|
||||
|
||||
-- Check for windows
|
||||
local is_windows = ya.target_family() == "windows"
|
||||
@@ -460,7 +460,7 @@ return {
|
||||
-- Create a temporary directory for intermediate files
|
||||
local temp_dir_name = ".tmp_compress"
|
||||
local temp_dir = combine_url(output_dir, temp_dir_name)
|
||||
temp_dir = tostring(fs.unique_name(Url(temp_dir)))
|
||||
temp_dir = tostring(fs.unique("dir", Url(temp_dir)))
|
||||
|
||||
-- Attempt to create the temporary directory
|
||||
local temp_dir_status, temp_dir_err = fs.create("dir_all", Url(temp_dir))
|
||||
@@ -532,7 +532,7 @@ return {
|
||||
-- Move the final file from the temporary directory to the output directory
|
||||
local final_output_url = combine_url(output_dir, original_name)
|
||||
local temp_url_processed = combine_url(temp_dir, original_name)
|
||||
final_output_url = tostring(fs.unique_name(Url(final_output_url)))
|
||||
final_output_url = tostring(fs.unique("file", Url(final_output_url)))
|
||||
local from, to = Url(temp_url_processed), Url(final_output_url)
|
||||
local move_status, move_err = fs.rename(from, to)
|
||||
if not move_status then
|
||||
|
||||
@@ -39,10 +39,7 @@ group = "git"
|
||||
|
||||
## Advanced
|
||||
|
||||
> [!NOTE]
|
||||
> The following configuration must be put before `require("git"):setup()`
|
||||
|
||||
You can customize the [Style](https://yazi-rs.github.io/docs/plugins/layout#style) of the status sign with:
|
||||
You can customize the [Style](https://yazi-rs.github.io/docs/configuration/theme#types.style) of the status sign with:
|
||||
|
||||
- `[git].unknown` - status cannot/not yet determined
|
||||
- `[git].modified` - modified file
|
||||
|
||||
Reference in New Issue
Block a user