Syntax highlighting, IntelliSense, and language support for MVFV programming language in Visual Studio Code.
Features
✨ Syntax Highlighting - Full color support for MVFV code
🤖 IntelliSense - Autocompletion for all commands
📝 Code Snippets - Quick templates for common patterns
📚 Hover Documentation - Inline help for commands
▶️ Run Integration - Execute MVFV scripts directly
💻 REPL Terminal - Interactive interpreter
Quick Start
Install the extension
Create a file with .mvfv extension
Start coding with full syntax support
MVFV Icon Without Replacing Other File Icons
Visual Studio Code does not merge file icon themes. If this extension contributes an icon theme, it replaces the icons from HTML/CSS/JS and other languages. To keep all existing icons and still show a custom icon for .mvfv, use a file icon theme that supports custom associations and configure it in your user settings. That keeps the main theme icons intact while adding .mvfv as a custom mapping.
Example MVFV Code
# Hello World
print "Hello, MVFV!"
# Variables
var x = 10
var name = "MVFV"
# Math operations
math.add x 5
math.mul 3 7
# String operations
string.upper name
# Control flow
if x > 5 {
print "x is greater than 5"
}
# Loops
for i = 0 to 5 {
print i
}
# Security
sec.mode strict
sec.allow print
net.ping andress
net.check andress