qscintilla Questions
2
Solved
I've developed an application which uses qscintilla as a text editor. I also implemented custom lexer to highlight language specific keywords. So far styles for highlighted keywords are hardcoded i...
Spruill asked 8/3, 2016 at 22:10
1
I am developing a desktop application using "PyQt4". The application contains an XML editor implemented on top of Qscintilla. However I have an issue whenever I click a hyperlink-alike text defined...
Stefaniestefano asked 17/12, 2019 at 19:19
4
Solved
I am trying to make a simple texteditor with basic syntax highlighting, code completion and clickable functions & variables in PyQt5. My best hope to achieve this is using the QScintilla port
...
Drain asked 12/10, 2016 at 15:20
2
Consider the below mcve:
import sys
import textwrap
from PyQt5.Qsci import QsciScintilla
from PyQt5.Qt import *
if __name__ == '__main__':
app = QApplication(sys.argv)
view = QsciScintilla()...
Funch asked 24/4, 2019 at 9:2
2
Consider this mcve:
import math
import sys
import textwrap
import time
from pathlib import Path
from collections import defaultdict
from PyQt5.Qsci import QsciLexerCustom, QsciScintilla
from PyQt...
Wilburn asked 20/4, 2019 at 17:5
1
Solved
Consider this snippet:
import sys
from PyQt5.Qsci import QsciScintilla
from PyQt5.Qt import *
if __name__ == '__main__':
app = QApplication(sys.argv)
view = QsciScintilla()
# http://www.scin...
Kira asked 18/4, 2019 at 12:1
1
Solved
The end goal here is to implement indentation based code folding in QScintilla similarly to the way SublimeText3 does.
First of all, here's a little example of how you'd manually provide folding u...
Eckblad asked 29/3, 2019 at 22:44
3
I am trying to install and run ninja-ide http://ninja-ide.org/home/
However when I try to run ninja-ide I am facing this error
ImportError: No module named Qsci
I have been trying to install ni...
Hartzel asked 2/10, 2014 at 22:30
1
Solved
Consider this snippet:
import sys
import textwrap
import re
from PyQt5.Qt import * # noqa
from PyQt5.Qsci import QsciScintilla
from PyQt5.Qsci import QsciLexerCustom
from lark import Lark, inli...
Firing asked 22/5, 2018 at 3:27
3
Solved
I'm trying to implement a toggle comment feature in QScintilla that works with multiple selection. Unfortunately I don't know very well how to do it, so far I've come up with this code:
import sys...
Z asked 15/5, 2018 at 17:15
1
Solved
I like PySide, and have used it for a while now, but in the program I am working on at the moment, I need an advanced code editor.
I have found QScintilla, but that is for PyQt. Is that compatibl...
Earthward asked 21/4, 2013 at 22:50
1
© 2022 - 2024 — McMap. All rights reserved.