We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99cc2a6 commit df40e3aCopy full SHA for df40e3a
1 file changed
crates/completest-pty/src/lib.rs
@@ -177,8 +177,8 @@ PS1='% '
177
"
178
.to_owned();
179
std::fs::write(config_path, config)?;
180
- // Ignore ~/.inputrc which may set vi edit mode by setting empty .inputrc file.
181
- std::fs::write(inputrc_path, "")?;
+ // Ignore ~/.inputrc which may set vi edit mode.
+ std::fs::write(inputrc_path, "# expected empty file to disable loading ~/.inputrc\n")?;
182
183
Self::with_home(bin_root, home)
184
}
0 commit comments