Search found 117 matches
- 14.05.2026 02:12
- Forum: Plugins
- Topic: Add-ons Update Should Fetch Compressed JSON Archive
- Replies: 4
- Views: 405
Re: Add-ons Update Should Fetch Compressed JSON Archive
An archive holding all JSON files. Right now, DNS lookup and HTTP request happens N times for N JSON files. Using one archive means 1 lookup and fetch, much quicker.
- 13.05.2026 04:56
- Forum: Plugins
- Topic: Add-ons Update Should Fetch Compressed JSON Archive
- Replies: 4
- Views: 405
Add-ons Update Should Fetch Compressed JSON Archive
Textual formats like JSON compress well. Files going to /tmp/cudatext/addon_man/*.json for Add-ons Update should traverse the Internet archivally compressed. My test below dropped data size from 136K to 15K on Linux. 7z a -t7z /tmp/footest.7z /tmp/cudatext/addon_man ls -hal /tmp/footest.7z Add-ons U...
- 13.05.2026 04:50
- Forum: Lexers
- Topic: Human-inclined data (HID)
- Replies: 3
- Views: 834
Re: Human-inclined data (HID)
I don't use it (yet) but it looks similar to YAML. Just wanted people to know it exists. Thanks!
- 06.05.2026 21:30
- Forum: Lexers
- Topic: Human-inclined data (HID)
- Replies: 3
- Views: 834
Human-inclined data (HID)
XML semantics without syntax fuss.
https://genode.org/documentation/hid
https://genode.org/documentation/hid
- 06.05.2026 21:24
- Forum: General - CudaText
- Topic: CudaText last release
- Replies: 186
- Views: 214423
Re: CudaText last release
CudaText 1.234.0.4. add: menu "File / Line ends" shows more detailed items: "Linux/Unix (LF) / Windows (CRLF) / Mac OS 9 (CR)". Should say "Linux/Unix/macOS X (LF) / Windows (CRLF) / Mac OS 9 and earlier (CR)" because the current string may confuse innocent macOS users...
- 26.02.2026 23:12
- Forum: General - CudaText
- Topic: Snippet Panel Ideas
- Replies: 2
- Views: 746
Snippet Panel Ideas
Wiki should clarify expectations for custom snippet panel data. (1) User must create new sub-folder, data/clips (2) Each list lives in a sub-sub-folder, data/clips/mysnipsname (3) mysnipsname appears on the snippets panel drop-down menu (4) Actual snippet file is data/clips/mysnipsname/List.txt Snip...
- 26.02.2026 00:39
- Forum: Lexers
- Topic: Generic Lexer Missing for rc/conf/config Files
- Replies: 18
- Views: 2265
Re: Generic Lexer Missing for rc/conf/config Files
For anyone else interested, you need a stanza in user.json for files not otherwise matched, with caret in the lexer name as follows: "detect": { "shellcheckrc": "Config-RC ^", "clifmrc": "Config-RC ^", "miller.rc": "Config-RC ^" }...
- 23.02.2026 06:28
- Forum: Plugins
- Topic: plugin Spell Checker
- Replies: 36
- Views: 31822
Re: Spellchecker Dialog Broken Linux Qt6 Wayland
Cancel stops the whole spellcheck. Ignore All continues the spellcheck while ignoring the specified word anywhere in the document. Simple Ignore continues the spellcheck but only ignores the word once; if it happens again, the same correction prompt will too.
- 20.02.2026 19:07
- Forum: Lexers
- Topic: KDL Lexer Missing
- Replies: 7
- Views: 1165
Re: KDL Lexer Missing
An installer question: why KDL does not show in packages.ini file. All other lexers do, just not KDL. I made an install .zip as follows: $ ls -1 lexer.KDL KDL.cuda-lexmap KDL.lcf default-config.kdl install.inf $ 7z a -tzip ./lexer.KDL.zip ./lexer.KDL The .zip I then opened in Cud to install. What sh...
- 19.02.2026 06:52
- Forum: Lexers
- Topic: KDL Lexer Missing
- Replies: 7
- Views: 1165
KDL Lexer Missing
KDL Specification KDL is a small, pleasant document language with XML-like node semantics ... to be used both as a serialization format and a configuration language, much like JSON, YAML, or XML. all numbers can have underscores to help readability grammar and expected semantics are well-defined an...