mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
fix: set allow-passthrough always to all instead of on to prevent overriding a user setting with a higher priority all (#1626)
This commit is contained in:
parent
3ee1209d3c
commit
b87361023f
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ pub fn init() {
|
||||||
|
|
||||||
if *TMUX {
|
if *TMUX {
|
||||||
_ = std::process::Command::new("tmux")
|
_ = std::process::Command::new("tmux")
|
||||||
.args(["set", "-p", "allow-passthrough", "on"])
|
.args(["set", "-p", "allow-passthrough", "all"])
|
||||||
.stdin(std::process::Stdio::null())
|
.stdin(std::process::Stdio::null())
|
||||||
.stdout(std::process::Stdio::null())
|
.stdout(std::process::Stdio::null())
|
||||||
.stderr(std::process::Stdio::null())
|
.stderr(std::process::Stdio::null())
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue