Skip to content
Snippets Groups Projects
Commit 5fd2133b authored by Andrew Dassonville's avatar Andrew Dassonville Committed by Marijn Haverbeke
Browse files

[kotlin mode] Remove `package` from def keywords

parent 2a5abc3b
No related branches found
No related tags found
No related merge requests found
...@@ -591,7 +591,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) { ...@@ -591,7 +591,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
multiLineStrings: true, multiLineStrings: true,
number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i, number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,
blockKeywords: words("catch class do else finally for if where try while enum"), blockKeywords: words("catch class do else finally for if where try while enum"),
defKeywords: words("class val var object package interface fun"), defKeywords: words("class val var object interface fun"),
atoms: words("true false null this"), atoms: words("true false null this"),
hooks: { hooks: {
'"': function(stream, state) { '"': function(stream, state) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment