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.13
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 : syntax.txt
JED is now able to do simple syntax highlighting while in C, Fortran, or TeX mode. To enable syntax highlighting, in your startup file (.jedrc, jed.rc) set the variable `WANT_SYNTAX_HIGHLIGHT' to 1. On Unix and VMS systems, it is also necessary to set the variable `USE_ANSI_COLORS' to a non-zero value. To control how to do color syntax highlight highlighting, use the `set_color' function. This function takes three parameters: the first says what to color and the last two specify what foreground and background colors to use. The `what' parameter can be any one of: "operator" "number" "comment" "string" "keyword" "delimiter" "preprocess" What these actually refer to is mode dependent. For C mode, they have the following meaning: "operator" : `+', `-', `*', `/', `?', etc. "number" : 1.23, -3, 0x101, etc... "comment" : /* c comment */ // c++ comment "string" : "anything in single or double quotes" "keyword" : c++ keywords such as `if', `while', `register', `class' "delimiter" : Braces {}, parenthesis, commas, etc... "preprocess" : Lines starting with `#' Fortran mode syntax highlighting is similar to C mode. In TeX mode only "number" : a formula: $c^2 = a^2 + b^2$ "comment" : % This is a comment "keyword" : Anything following a slash(e.g., \begin) and `{', `}', `&', etc... have meaning. Any other object not falling in any of the above categories is not highlighted. In C mode, to avoid the task of parsing the buffer on every screen update, comments must either be confined to a single line, or have the following format: /* This is a multi-line * comment. Note how the lines * following the initial one * start with a `*' followed by a * whitespace character */ That is, the second, third, and lines must start with one or more `*' followed by at least one whitespace character. This means that *p++ = ' '; will not be interpreted as comment but * p++ = ' '; will be flagged by the editor as a comment line. Finally, if the screen is panned to the right, syntax highlighting will sometimes fail. This is because the highlighting is performed based entirely upon the visible information. This is only a problem when strings are split with the beginning off to the left of the display (not visible) and the end lying in the visible portion of the buffer. A similar statement holds for comments as well.
Close