QCodeEditor
QCodeEditor copied to clipboard
Qt Code Editor widget.
It would be nice if it supports to use of this lib in PyQt5/6 or PySide5/6 app.
I think it would be better with bracket folding.
Hi, it seems there's a lack of a find + replace ui - this would be needed for any kind of word processing ui and hence this is a feature...
Highlights most (all?) Java keywords and comments. Most of the boilerplate code was copied from the C++ highlighter. Keywords retrieved [here](https://en.wikipedia.org/wiki/List_of_Java_keywords).
C++ and Java have much common keywords. Modifying the C++ Highlighter we can build a Java highlighter. C/C++, Java and Python are most commonly used languages and for a code...
Many modern code editors allow for the visualization of whitespace, in order for programmers to differentiate tabs and spaces (and sometimes carriage returns and line feeds.) Here's an example from...
This would probably be a bit of work, but would certainly be a nice-to-have. I think Qt supports this type of config file as well, so hopefully that'd reduce the...
``` /* CODE HERE //*/ ``` The highlighting recognizes that this is a block comment and highlights the whole chunk. However, if we add / at the start ``` //*...
If the user has a selection that spans more than 1 line and presses the Tab key, those lines are indented by 1 TAB (or a number of spaces, depending...
Trying to fix #6 issue