Overview Version History Q & A Rating & Review
Dorpn Language Support for VS Code
Dorpn Language Support is a comprehensive Visual Studio Code extension designed for the Dorpn programming language. It provides high-fidelity syntax highlighting, language-specific configurations, and an optimized editing experience for Dorpn developers.
Features
✅ Syntax highlighting for Dorpn keywords, types, operators, and literals
✅ Custom .dpn file icon (dark + light theme variants)
✅ Dorpn Dark color theme with hand-picked colors
✅ Auto-closing brackets and quotes
✅ Comment toggling (# and --)
✅ Indentation rules for func, if, loop, tag, etc.
✅ Code folding support (off-side rule)
Color Palette
Token
Color
Control keywords (if, loop, return…)
Purple #cba6f7
Declaration keywords (func, tag, Const)
Blue #89b4fa
Logical keywords (and, or, not, fld)
Pink italic #f5c2e7
Types (Int, Float, String, Bool…)
Yellow #f9e2af
Function names
Cyan #89dceb
Strings
Green #a6e3a1
Numbers
Peach #fab387
Booleans (true/false)
Red #f38ba8
Comments
Gray italic #45475a
Operators (+, -, ==…)
Flamingo #f38ba8
Dorpn Syntax Covered
-- Comment
# Comment
tag val : String = "Hello"
print(val,"from dorpn")
func add(a: Int, b: Int): Int:
return a + b
Const PI = 3.14159
func main():
tag p = Point(x: 10, y: 20)
if p.x > 5:
loop i = 0, keep i < 10:
skip
elif p.y == 0:
halt
else:
return
func _Start(): -- Entry
main()
Download Dorpn for Windows
Currently Dorpn is only available for windows.
Download Dorpn from its official Github Releases .
Download and enjoy the coding now .