Princezná z Walesu opäť raz pritiahla všetky pohľady – no tentoraz to nebolo len obdivom😕 Za TENTO detail si vyslúžila kritiku 😳A treba úprimne uznať, že na tom bol kus pravdy 🤔 #catherine #kate
Princezná z Walesu opäť raz pritiahla všetky pohľady – no tentoraz to nebolo len obdivom😕 Za TENTO detail si vyslúžila kritiku 😳A treba úprimne uznať, že na tom bol kus pravdy 🤔 #catherine #kate

Kate continues to be an excellent go-to for general text editing. Automatic LSP detection for common formats, multiple cursors, and an actually really nice minimap.
Also! Here's the kpart docs, since the link to them is broken in the Kate docs for some general editing how-tos.


Jia Guolong stated that in the future, a new brand will be employed to take over certain closed Xibei stores and their employees.
Of course, the #Linux #KDE #Kate #editor CAN DO THAT! 🤓👍
👉 Block Selection Mode: Ctrl+Shift+B, then click and drag - here's an example screen recording.
I was wondering, where the fancy old EditPlus (Windows) functionality went. I've asked Copilot/incognito: "kde 6, kate 25: how to select an arbitrary block of characters?"
(delete+redraft: video seemed broken, re-encoded)
Look at what I made... I made.. a Kate snippet... but not just any Kate snippet... it's a Kate snippet that can make a href links to selected text using clipboard content.... It took me 24 hours of work because there are literally zero tutorials nor documentation on this in Japanese... I have also made this accessible with a keyboard shortcut... so that I can make href links at will.... without typing <a href="clipboardtext.html">selectedtext</a>every single time....
Snippet:
${hrefwrap()}function hrefwrap() {return "<a href=\"" + editor.clipboardText() + "\">" + view.selectedText() + "</a>";}