This commit is contained in:
sxyazi 2026-01-28 22:26:11 +08:00
parent a8cb703f2b
commit a5557574f9
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -8,7 +8,7 @@ function bugReportBody(creator, content, hash) {
return null return null
} }
return `Hey @${creator}, thank you for opening this issue to help us improve Yazi - we really appreciate it! return `Hey @${creator}, thank you for opening this issue to help us improve Yazi, appreciate it!
I noticed that you did not correctly follow the issue template. Please ensure that: I noticed that you did not correctly follow the issue template. Please ensure that:
@ -27,7 +27,7 @@ function featureRequestBody(creator, content) {
return null return null
} }
return `Hey @${creator}, thank you for opening this issue to help us improve Yazi - we really appreciate it! return `Hey @${creator}, thank you for opening this issue to help us improve Yazi, appreciate it!
I noticed that you did not correctly follow the issue template. Please ensure that: I noticed that you did not correctly follow the issue template. Please ensure that:

View file

@ -62,6 +62,7 @@ impl Actions {
writeln!(s, " YAZI_FILE_ONE : {:?}", env::var_os("YAZI_FILE_ONE"))?; writeln!(s, " YAZI_FILE_ONE : {:?}", env::var_os("YAZI_FILE_ONE"))?;
writeln!(s, " YAZI_CONFIG_HOME : {:?}", env::var_os("YAZI_CONFIG_HOME"))?; writeln!(s, " YAZI_CONFIG_HOME : {:?}", env::var_os("YAZI_CONFIG_HOME"))?;
writeln!(s, " YAZI_ZOXIDE_OPTS : {:?}", env::var_os("YAZI_ZOXIDE_OPTS"))?; writeln!(s, " YAZI_ZOXIDE_OPTS : {:?}", env::var_os("YAZI_ZOXIDE_OPTS"))?;
writeln!(s, " SSH_AUTH_SOCK : {:?}", env::var_os("SSH_AUTH_SOCK"))?;
writeln!(s, " FZF_DEFAULT_OPTS : {:?}", env::var_os("FZF_DEFAULT_OPTS"))?; writeln!(s, " FZF_DEFAULT_OPTS : {:?}", env::var_os("FZF_DEFAULT_OPTS"))?;
writeln!(s, " FZF_DEFAULT_COMMAND: {:?}", env::var_os("FZF_DEFAULT_COMMAND"))?; writeln!(s, " FZF_DEFAULT_COMMAND: {:?}", env::var_os("FZF_DEFAULT_COMMAND"))?;