diff --git a/Classes/Dialogs/PasteSheet.m b/Classes/Dialogs/PasteSheet.m index 88af798d..c5f40fd6 100644 --- a/Classes/Dialogs/PasteSheet.m +++ b/Classes/Dialogs/PasteSheet.m @@ -29,9 +29,9 @@ - (id)init if (!SYNTAXES) { SYNTAXES = [[NSArray arrayWithObjects: - @"privmsg", @"notice", @"c", @"css", @"diff", @"html", - @"java", @"javascript", @"php", @"plain text", @"python", - @"ruby", @"sql", @"shell script", @"perl", @"haskell", + @"privmsg", @"notice", @"c", @"clojure", @"coffeescript", @"css", @"diff", + @"handlebars", @"haml", @"html", @"java", @"javascript", @"php", @"plain text", + @"python", @"ruby", @"sql", @"shell script", @"perl", @"haskell", @"scheme", @"objective-c", nil] retain]; } @@ -39,8 +39,12 @@ - (id)init if (!SYNTAX_EXT_MAP) { SYNTAX_EXT_MAP = [[NSDictionary dictionaryWithObjectsAndKeys: @"C", @"c", + @"Clojure", @"clojure", + @"Coffeescript", @"coffeescript", @"CSS", @"css", @"Diff", @"diff", + @"Haml", @"haml", + @"Handlebars", @"handlebars", @"Haskell", @"haskell", @"HTML", @"html", @"Java", @"java",