Downloading Kate Highlighting Files
Tuesday, 14 August 2018
| Dominik Haumann | Tags:
planet
Starting with the KDE Frameworks 5.50 release we decided to remove the capability in Kate/KTextEditor to download / update syntax highlighting files from the Kate homepage.
The reasons for this are as follows:
The KTextEditor framework is released once a month, meaning that users who use latest KDE software usually anyways have the most recent versions. Other users who do not follow the latest development releases (like your mom) are likely not the target audience for downloading highlighting files. There are technical problems with only updating certain highlighting files, since it can lead to an inconsistent state when one highlighting file needs another one that was not updated or does not exist, or also if a highlighting file needs a certain indenter that does not yet exist or contains bugs. We have a nice small cleanup in the UI, since we have now one button less. Git changes:
Read More
Porting KTextEditor to KSyntaxHighlighting – Folding
Saturday, 4 August 2018
| Christoph Cullmann
After fixing some first porting bugs to KSyntaxHighlighting, code folding (non-indentation based) is back working, too.
There is a still a lot to do (and e.g. the syntax colors are still kind of randomized), but already all KTextEditor original highlighting code is gone without ending up in an unusable state.
Porting KTextEditor to KSyntaxHighlighting
Tuesday, 31 July 2018
| Christoph Cullmann
After several years, the time has come that KTextEditor finally starts to use more of KSyntaxHighlighting than just the syntax definitions resources.
At the moment, we still do everything on our own (parsing the xml, doing the highlighting, …) and only use the XML files bundled inside the KSyntaxHighlighting library as “code sharing”.
I started a “syntax-highlighting” branch in ktexteditor.git to change that. Dominik helped out by starting to add missing API to KSyntaxHighlighting that will ease the porting.
Read More
Going to Akademy, too ;)
Tuesday, 31 July 2018
| Christoph Cullmann
Like Dominik, I will be around the whole Akademy, too.
Looking forward to see new and old friends, lets have a productive week there!
Going to Akademy
Saturday, 28 July 2018
| Dominik Haumann
Of course, I am going to Akademy. I’ll be there from Friday 10th to Saturday 18th. See you! :-)
Improving Syntax Highlighting Files
Saturday, 10 March 2018
| Dominik Haumann | Tags:
planet
When building the KSyntaxHighlighting framework, the syntax highlighting xml files are compiled into the KSyntaxHighlighting library. In order to do so, we have a small little helper program that generates an index of all xml files. This indexer also validates the xml files against the XML Schema, and performs some more sanity checks.
Review request D10621 tries to extend the indexer even further and suggest optimizations for our highlighting files. For instance, the rule
Read More
Article about cmake
Wednesday, 21 February 2018
| Dominik Haumann | Tags:
planet
Just in case someone is interested: two days ago a very good article about cmake popped up, called It’s Time to do CMake Right. There also is a discussion about it on reddit/r/cpp. happy reading :)
Rendering issues and the power of open source
Saturday, 10 February 2018
| Christoph Cullmann | Tags:
planet
After a long time of constant distraction by my daily work, I finally found again a bit time to take care of KTextEditor/Kate/… issues.
One thing that really started to be an itch I wanted to scratch is some rendering fault that occur with ‘special’ font sizes.
Given I wanted to do again a bit work on the macOS port, I was really annoyed that on my screen the only application with text rendering issues was “my” one :/
Read More
Fancy Terminal Prompt
Monday, 8 January 2018
| Dominik Haumann | Tags:
planet
By default, the terminal looks as follows on my Linux distribution:
However, if you are working a lot on the terminal, there are a lot of scripts and tricks available in the net that improve the information displayed in the terminal in many ways. For instance, since many many years, I have the following at the end of my ~/.bashrc:
Read More
Tracking KDE Development
Sunday, 31 December 2017
| Dominik Haumann | Tags:
planet
A central place to track KDE development is the kde-commits@kde.org mailing list. To this mailing list, all code changes are sent, containing the log message as well as the diff that quickly shows what really changed. In the early days of KDE development, the changes were maintained by the CVS version control system. Later, this was changed to subversion. Nowadays, KDE mostly uses git, but some svn modules are still around.
Read More