cd catspeak-syntax
npx vsce package
code --install-extension catspeak-language-1.0.0.vsix
Usage
Open any .meow file and enjoy syntax highlighting!
Example
-- This is a comment
let mod = {
name: "My Mod",
description: "A cool mod",
new_day: fun () {
if global.money < 1_000_000 {
global.money += 500_000
mods_notify("Bonus!", "Here's some cash")
}
}
}
return mod