Skip to content

Instantly share code, notes, and snippets.

@Deathspike
Created April 11, 2013 19:57
Show Gist options
  • Save Deathspike/5366681 to your computer and use it in GitHub Desktop.
Save Deathspike/5366681 to your computer and use it in GitHub Desktop.
Fix for Komodo Edit 8 (Iced)CoffeeScript in langinfo_prog.py
class CoffeeScriptLangInfo(_JSLikeLangInfo):
name = "CoffeeScript"
exts = ['.coffee']
common_keywords = set(["true", "false", "null", "this",
"new", "delete", "typeof", "in", "instanceof",
"return", "throw", "break", "continue", "debugger",
"if", "else", "switch", "for", "while", "do", "try", "catch", "finally",
"class", "extends", "super",
"undefined", "then", "unless", "until", "loop", "of", "by", "when",
"and", "or", "is", "isnt", "not", "yes", "no", "on" "off",
"case", "default", "function", "var", "void", "with", "const", "let", "enum"
"export", "import", "native", "__hasProp", "__extends", "__slice", "__bind"
"__indexOf", "implements", "interface", "package", "private", "protected"
"public", "static", "yield", "arguments", "eval",
"await", "defer"]);
keywords = common_keywords
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment