mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-17 01:42:45 +02:00
build: bump tcell version
This commit is contained in:
8
vendor/github.com/gdamore/tcell/v2/tscreen.go
generated
vendored
8
vendor/github.com/gdamore/tcell/v2/tscreen.go
generated
vendored
@ -12,6 +12,9 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build !(js && wasm)
|
||||
// +build !js !wasm
|
||||
|
||||
package tcell
|
||||
|
||||
import (
|
||||
@ -341,6 +344,11 @@ func (t *tScreen) prepareBracketedPaste() {
|
||||
}
|
||||
|
||||
func (t *tScreen) prepareExtendedOSC() {
|
||||
// Linux is a special beast - because it has a mouse entry, but does
|
||||
// not swallow these OSC commands properly.
|
||||
if (strings.Contains(t.ti.Name, "linux")) {
|
||||
return;
|
||||
}
|
||||
// More stuff for limits in terminfo. This time we are applying
|
||||
// the most common OSC (operating system commands). Generally
|
||||
// terminals that don't understand these will ignore them.
|
||||
|
Reference in New Issue
Block a user