Skip to content
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.

Fix Clojure syntax highlighting #38

Merged
merged 13 commits into from
Aug 8, 2018
Prev Previous commit
Next Next commit
Move boolean and str to keywords
  • Loading branch information
masad-frost committed Jun 9, 2018
commit 6f38c8fe44917d7a274afb9871f694e72dd621a2
4 changes: 3 additions & 1 deletion src/clojure/clojure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,11 @@ export const language = <ILanguage>{
'go',
'go-loop',
'thread',
'boolean',
'str',
],

constants: ['true', 'false', 'nil', 'boolean', 'str'],
constants: ['true', 'false', 'nil'],

operators: [
'=',
Expand Down