C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Failing after 17s
JS/TS / lint (pull_request) Successful in 19s
Python / static (pull_request) Successful in 1m11s
Rust / fmt (pull_request) Successful in 1m3s
Rust / build (pull_request) Successful in 2m26s
Rust / clippy (pull_request) Failing after 16m40s
Python / verify (pull_request) Failing after 17m52s
C++ / clang-tidy (pull_request) Failing after 18m0s
C++ / build (pull_request) Failing after 18m2s
28 lines
557 B
QML
28 lines
557 B
QML
import Quickshell
|
|
import QtQuick
|
|
import ZShell.Config
|
|
import qs.Components
|
|
import qs.Services
|
|
|
|
TextEditBase {
|
|
id: root
|
|
|
|
color: Colors.palette.m3onSurface
|
|
readOnly: true
|
|
textFormat: Text.MarkdownText
|
|
font.pointSize: Tokens.font.size.smaller
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
|
|
onLinkActivated: link => {
|
|
Qt.openUrlExternally(link);
|
|
}
|
|
|
|
CustomMouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton
|
|
cursorShape: root.hoveredLink !== "" ? Qt.PointingHandCursor : Qt.IBeamCursor
|
|
preventStealing: false
|
|
hoverEnabled: true
|
|
}
|
|
}
|