From 4aa3ef5a432d77f32238011cc6947e5329cb5577 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Mon, 3 Jun 2019 12:31:07 -0400 Subject: [PATCH] Remove coffeescript --- config/languages.json | 12 ------------ src/definitions.h | 29 +---------------------------- 2 files changed, 1 insertion(+), 40 deletions(-) diff --git a/config/languages.json b/config/languages.json index 1331347..21319c6 100644 --- a/config/languages.json +++ b/config/languages.json @@ -33,18 +33,6 @@ "default", "comment", "keyword1", "string", "keyword2", "string", "string", "string" ] }, - "coffeescript": { - "name": "Coffeescript", - "file_pattern": "*.coffee;*.litcoffee", - "keywords": [ - "new instanceof do return break continue throw for while until loop if else unless switch when then in of by typeof delete where try catch finally prototype jQuery case default function var void with const let enum export import native __hasProp __extends __slice __bind __indexOf", - "Object Number Boolean Array String RegExp Function Date Math eval setInterval clearInterval setTimeout clearTimeout isFinite isNaN parseFloat parseInt escape unescape console encodeURI encodeURIComponent decodeURI decodeURIComponent window document navigator location history screen alert prompt process GLOBAL require exports", - "false true yes no on off undefined null NaN Infinity" - ], - "lexer_map": [ - "default", "comment", "comment_line", "comment_doc", "number", "keyword1", "string", "character", "uuid", "preprocessor", "operator", "identifier", "string_eol", "default", "regex", "comment_special", "keyword2" - ] - }, "cpp": { "name": "C / C++", "file_pattern": "*.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hpp;*.hxx;*.xpm", diff --git a/src/definitions.h b/src/definitions.h index 27499a0..4fe4e7a 100644 --- a/src/definitions.h +++ b/src/definitions.h @@ -91,7 +91,6 @@ const wxString TYRO_FILE_OPEN_WILDCARDS = "Caml (*.ml,*.mli,*.sml,*.thy)|*.ml;*.mli;*.sml;*.thy|" "Cmake (*.cmake) |*.cmake|" "C/C++ (*.c,*.cpp,*.h)|*.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hpp;*.hxx;*.sma;*.cp|" - "Coffeescript (*.coffee)|*.coffee;*.litcoffee|" "CSS (*.css)|*.css|" "Fortran (*.f9*, *.f, *.for)|*.f9*;*.f,*.for|" "Haskell (*.hs,*.lhs,*.las)|*.hs;*.lhs;*.las|" @@ -113,30 +112,4 @@ const wxString TYRO_FILE_OPEN_WILDCARDS = "Text (*.txt)|*.txt|" "Yaml (.yml,*.yaml)| *.yml;*.yaml|"; -const wxString TYRO_FILE_SAVE_WILDCARDS = - "All files (*.*)|*|" - "Batch (*.bat, *.cmd, *.nt)|*.bat;*.cmd,*.nt|" - "Caml (*.ml,*.mli,*.sml,*.thy)|*.ml;*.mli;*.sml;*.thy|" - "Cmake (*.cmake) |*.cmake|" - "C/C++ (*.c,*.cpp,*.h)|*.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hpp;*.hxx;*.sma;*.cp|" - "Coffeescript (*.coffee)|*.coffee;*.litcoffee|" - "CSS (*.css)|*.css|" - "Fortran (*.f9*, *.f, *.for)|*.f9*;*.f,*.for|" - "Haskell (*.hs,*.lhs,*.las)|*.hs;*.lhs;*.las|" - "HTML/XHTML (*.html, *.htm)|*.htm*|" - "Java (*.java)|*.java|" - "JavaScript (*.js,*.json,*.ts)|*.js;*.json;*.ts|" - "Lisp (*.lsp,*.lisp)|*.lsp;*.lisp|" - "Lua (*.lua)|*.lua|" - "Makefile |Makefile;makefile.*;MAKEFILE;configure.*;*.mak|" - "Markdown (*.md,*.markdown)|*.md;*.markdown|" - "Perl (*.pl, *.cgi)|*.pl;*.pm;*.cgi;*.pod|" - "PHP (*.php)|*.php|" - "Python (*.py,*.pyw)|*.py;*.pyw|" - "Ruby (*.rb)|*.rb|" - "Rust (*.rs)|*.rs|" - "Scheme (*.scm)|*.scm|" - "Shell (*.sh, *.bsh)|*.sh;*.bsh|" - "SQL (*.sql)|*.sql|" - "Text (*.txt)|*.txt|" - "Yaml (.yml,*.yaml)| *.yml;*.yaml|"; +const wxString TYRO_FILE_SAVE_WILDCARDS = TYRO_FILE_OPEN_WILDCARDS;