1 Commits

Author SHA1 Message Date
Nick Hanley
bb4c7ddee6 Add short form of --profile to match documentation 2024-10-11 11:04:09 +02:00
4 changed files with 1 additions and 16 deletions

3
.gitignore vendored
View File

@@ -48,6 +48,3 @@ cool-retro-term
.DS_Store
*.app
# IntelliJ
.idea

View File

@@ -746,7 +746,7 @@ QtObject {
loadCustomProfiles()
var profileArgPosition = args.indexOf("--profile")
var profileArgPosition = args.indexOf(/-p|--profile/)
if (profileArgPosition !== -1) {
var profileIndex = getProfileIndexByName(
args[profileArgPosition + 1])

View File

@@ -58,13 +58,6 @@ Item{
kterminal.pasteClipboard()
}
}
Connections {
target: pasteActionAlt
onTriggered: {
kterminal.pasteSelection()
}
}
//When settings are updated sources need to be redrawn.
Connections {

View File

@@ -116,11 +116,6 @@ ApplicationWindow {
text: qsTr("Paste")
shortcut: "Ctrl+Shift+V"
}
Action {
id: pasteActionAlt
text: qsTr("Paste selection")
shortcut: "Shift+Insert"
}
Action {
id: zoomIn
text: qsTr("Zoom In")