ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

V

by elliotchance ALL

Sublime Text support for the V programming language

Details

  • 1.5.0
  • github.​com
  • 2 years ago
  • 3 hours ago
  • 2 years ago

Installs

  • Total 1K
  • Win 597
  • Mac 232
  • Linux 417
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5
Windows 1 1 0 0 0 1 1 0 1 0 0 1 1 2 0 0 0 2 0 1 0 0 0 0 0 0 1 0 1 0 0 2 1 0 0 0 1 0 0 0 0 0 1 1 2 0
Mac 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Linux 1 1 0 2 0 0 0 0 0 1 0 0 0 0 0 0 1 0 2 2 1 1 1 0 0 1 0 2 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0

Readme

Source
raw.​githubusercontent.​com

Sublime Text Support for the V Programming Language

This bundle provides V syntax highlighting for Sublime Text.

Installation

You can install the V package with Package Control:

Package Control: Install Package

Package Control: Install Package

For code completion you can install vlang/vls for Sublime Text 3 or 4.

Features

Commands for building, running, testing, formatting and updating V itself:

Command Palette

Inline errors and warnings:

Inline errors and warnings

Quickly goto to any symbol:

Goto any symbol

Show assertion failures inline:

Assert failures

Command Palette

Any commands that generate output will show in a new window called “V”. You may leave this tab open an any future runs will be appended.

V: Build

Build the current module (directory).

V: Build File

Build the current file.

V: Format File

Format the current file.

V: Format Module

Format the current module.

V: Format Project

Format the current project.

V: Run

Execute v run on the current module (directory).

V: Run Test

Execute v run only on the current file.

V: Test

Execute v test only on the current module (directory).

V: Test File

Execute v test only on the current file.

V: Update

Update V to the latest version (v up).

Custom Commands

{
    "caption": "Build Prod",
    "command": "v",
    "args": {
        "cmd": "-prod ${module}",   // required (string)
        "output": true,             // optional (boolean)
    }
},
  • cmd is required and in the example above will construct and execute v -prod "some/folder/path".
  • output is optional (defaults to true). If false, the output is not shown in the “V” window. This is useful for commands you intend to be silent (such as v fmt).

See Sublime Variables for full list, but some common ones are:

  • ${file} for the current file path.
  • ${file_path} for the directory the current file exists in (the module).
  • ${folder} for the project directory.

Contributing

Note: Make sure you uninstall the package if it's already installed with “Package Control > Remove Package…”

Now clone the package locally:

cd ~/Library/Application\ Support/Sublime\ Text/Packages
git clone https://github.com/elliotchance/vlang-sublime.git