Update to 7.1
This commit is contained in:
@@ -3,7 +3,7 @@ Language: Smalltalk
|
||||
Author: Vladimir Gubarkov <xonixx@gmail.com>
|
||||
*/
|
||||
|
||||
hljs.LANGUAGES.smalltalk = function() {
|
||||
hljs.LANGUAGES['smalltalk'] = function(hljs) {
|
||||
var VAR_IDENT_RE = '[a-z][a-zA-Z0-9_]*';
|
||||
var CHAR = {
|
||||
className: 'char',
|
||||
@@ -15,7 +15,7 @@ hljs.LANGUAGES.smalltalk = function() {
|
||||
};
|
||||
return {
|
||||
defaultMode: {
|
||||
keywords: {'self': 1, 'super': 1, 'nil': 1, 'true': 1, 'false': 1, 'thisContext': 1}, // only 6
|
||||
keywords: 'self super nil true false thisContext', // only 6
|
||||
contains: [
|
||||
{
|
||||
className: 'comment',
|
||||
@@ -52,4 +52,4 @@ hljs.LANGUAGES.smalltalk = function() {
|
||||
]
|
||||
}
|
||||
};
|
||||
}();
|
||||
}(hljs);
|
||||
|
||||
Reference in New Issue
Block a user