We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf678e commit ec1c247Copy full SHA for ec1c247
src/common.rs
@@ -1072,7 +1072,7 @@ pub static PROGRAM_NAME: OnceCell<&'static wstr> = OnceCell::new();
1072
/// the multiline prompt usable. See [#2859](https://github.com/fish-shell/fish-shell/issues/2859)
1073
/// and <https://github.com/Microsoft/BashOnWindows/issues/545>
1074
pub fn has_working_tty_timestamps() -> bool {
1075
- if cfg!(target_os = "windows") {
+ if cfg!(any(target_os = "windows", target_os = "cygwin")) {
1076
false
1077
} else if cfg!(target_os = "linux") {
1078
!is_windows_subsystem_for_linux(WSL::V1)
0 commit comments