1
1
mirror of https://github.com/walles/moar.git synced 2024-09-19 16:08:02 +03:00

Merge pull request #181 from zmc/wezterm

Use the "select" mouse mode on WezTerm
This commit is contained in:
Johan Walles 2024-01-04 09:11:16 +01:00 committed by GitHub
commit 192838ab89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,6 +271,11 @@ func terminalHasArrowKeysEmulation() bool {
return true
}
// Wezterm, tested on MacOS 12.6, January 3rd, 2024
if os.Getenv("TERM_PROGRAM") == "WezTerm" {
return true
}
return false
}