We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 0660dcf commit 1bac84cCopy full SHA for 1bac84c
python/console_output.py
@@ -110,6 +110,9 @@ def __init__(self, parent=None):
110
111
self.runShortcut = QShortcut(QKeySequence(Qt.CTRL + Qt.Key_E), self)
112
self.runShortcut.activated.connect(self.enteredSelected)
113
+ # Reimplemeted copy action to prevent paste prompt (>>>,...) in command view
114
+ self.copyShortcut = QShortcut(QKeySequence(Qt.CTRL + Qt.Key_C), self)
115
+ self.copyShortcut.activated.connect(self.copy)
116
117
def refreshLexerProperties(self):
118
self.setLexers()
0 commit comments