Skip to content

Instantly share code, notes, and snippets.

@El-Wumbus
Created January 26, 2022 03:21
Show Gist options
  • Save El-Wumbus/5531f76fc3b694af6540d4c43654b2a6 to your computer and use it in GitHub Desktop.
Save El-Wumbus/5531f76fc3b694af6540d4c43654b2a6 to your computer and use it in GitHub Desktop.
The syntax highlighting keywords for Dedit
/* C/C++ Keywords */
"auto", "break", "case", "continue", "default", "do", "else", "enum",
"extern", "for", "goto", "if", "register", "return", "sizeof", "static",
"struct", "switch", "typedef", "union", "volatile", "while", "NULL",
"alignas", "alignof", "and", "and_eq", "asm", "bitand", "bitor", "class",
"compl", "constexpr", "const_cast", "deltype", "delete", "dynamic_cast",
"explicit", "export", "false", "friend", "inline", "mutable", "namespace",
"new", "noexcept", "not", "not_eq", "nullptr", "operator", "or", "or_eq",
"private", "protected", "public", "reinterpret_cast", "static_assert",
"static_cast", "template", "this", "thread_local", "throw", "true", "try",
"typeid", "typename", "virtual", "xor", "xor_eq",
"int|", "long|", "double|", "float|", "char|", "unsigned|", "signed|",
"void|", "short|", "auto|", "const|", "bool|", NULL}
/* Bash keywords */
"ls",
"cd",
"rm",
"mv",
"cp",
"mkdir",
"pwd",
"touch",
"cat",
"less",
"more",
"grep",
"curl",
"which",
"top",
"htop",
"history",
"rmdir",
"ln",
"echo",
"printf",
"function",
"if",
"else",
"then",
"fi",
"sudo",
"for",
"in",
"do",
"done",
"$",
"chsh",
"==",
"read",
">",
">>",
"git",
"chmod",
"chroot",
"chown",
"uname",
"passwd",
"vi",
"&&",
"{",
"}",
"true",
"false"
/* Python */
"print",
"if",
"def",
"else",
"return",
"del",
"true",
"false",
"and",
"exec",
"not",
"assert",
"finally",
"or",
"break",
"pass",
"class",
"from",
"continue",
"global",
"raise",
"elif",
"del",
"import",
"try",
"in",
"while",
"is",
"with",
"except",
"lambda",
"yield",
"==",
"!=",
"eq",
"\\",
"*",
"+",
"-",
"**",
"/",
"%%",
"++",
"--",
"=",
"//",
"//=",
"+=",
"-=",
"*=",
"/=",
"%%=",
"**=",
"==",
"&=",
"|=",
">>=",
"<<=",
"<<",
">>",
"~",
"^",
/* JavaScript */
"console",
"console.log",
"return",
"abstract",
"arguments",
"await",
"boolean",
"break",
"sqrt",
"char",
"byte",
"catch",
"class",
"const",
"let",
"var",
"if",
"else",
"continue",
"for",
"while",
"with",
"debugger",
"defualt",
"delete",
"innerHTML",
"double",
"enum",
"eval",
"export",
"exteneds",
"false",
"final",
"finally",
"float",
"function",
"float",
"if",
"import",
"implements",
"in",
"instanceof",
"int",
"interface",
"long",
"native",
"new",
"null",
"package",
"private",
"protected",
"public",
"return",
"short",
"static",
"super",
"switch",
"synchronized",
"this",
"throw",
"throws",
"transient ",
"true",
"try",
"typeof",
"void",
"volatile",
"while",
"with",
"yield",
"*",
"+",
"-",
"**",
"/",
"%%",
"++",
"--",
"=",
"+=",
"-=",
"*=",
"/=",
"%%=",
"**=",
"==",
"===",
"!=",
"!==",
">",
"<",
">=",
"<=",
"?",
"||",
"&&",
"&",
"|",
"~",
"^",
"<<",
">>",
">>>",
"\\",
/* Java */
"abstract",
"assert",
"boolean",
"break",
"byte",
"case",
"catch",
"char",
"class",
"continue",
"const",
"default",
"do",
"double",
"else",
"enum",
"exports",
"extends",
"final",
"finally",
"float",
"for",
"if",
"goto",
"implements",
"import",
"instanceof",
"int",
"interface",
"long",
"module",
"native",
"new",
"private",
"package",
"protected",
"public",
"requires",
"return",
"short",
"static",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment