- Subject: [jed-users] A few offers and a question
- From: Nicholas Christopoulos <nikosc@xxxxxxxxxxx>
- Date: Mon, 12 Jan 2026 11:26:28 +0200
# Greeting JED community.
I use JED as my primary editor, well, patched.
Except the whole package of the BRIEF emulation, all other are just my
playground. If there is interest to move some feautures to indepented
projects I ll do it (for example the cycling and autocleanup backup).
## Color themes for JED
Just download the files and store them at `~/.jed/colors`.
Example for text modes to true-color graphics modes,
with or without `tmux`. It prooved tricky on linux!
```
variable t = getenv("TERM");
variable c = ... shell result of `tput colors`;
if ( t == "linux" || t == "tmux" \
|| t == "tmux-256color" || t == "tmux-direct" ) {
if ( c < 8 )
// 2 colors without intensity
set_color_scheme("mono-console");
else if ( c <= 16 )
// standard VGA 8/16 colors
// 8 colors mode is the VGA with 512 characters
// defined in video RAM (setfont(1) "unicode")
set_color_scheme("cbrief8-console");
else if ( c <= 16 )
// MDA / Hercules: 2 colors + intensity bit
set_color_scheme("mono-classic-console");
else if ( c < 256 )
// not paletted 16 colors, 16 bg colors
set_color_scheme("cbrief-console");
else
// true color mode, someone to try it at 256 color mode
set_color_scheme("cbrief256-console");
}
```
The BRIEF/CBRIEF color theme is close to Borland's "Turbo" environemts.
Do not forget to try gruvbox theme.
https://codeberg.org/nereusx/dotfiles/src/branch/main/.jed/colors
## [T]csh mode
https://codeberg.org/nereusx/dotfiles/src/branch/main/.jed/syntax/tcsh.sl
## S-Lang / JED man pages project
This one subproject just creates man pages from slang and/or jed help
files
https://codeberg.org/nereusx/jedc-macros/src/branch/main/jed-man
# Questions
1. How can I add hook at modelines ?
Thank you
Note: everything is free under GPL3+ license.
--
Nicholas Christopoulos <mailto:nikosc@xxxxxxxxxxx>
Personal Pages: <https://nicholas-christopoulos.dev>
Public repositories: <https://codeberg.org/nereusx>
_______________________________________________
For list information, visit <http://jedsoft.org/jed/mailinglists.html>.
[2026 date index]
[2026 thread index]
[Thread Prev] [Thread Next]
[Date Prev] [Date Next]