Skip to content
This repository has been archived by the owner on Jul 31, 2020. It is now read-only.

vitorsalgado/vscode-glide

Repository files navigation

VS Code Glide

Extension for Visual Studio Code

Build Status Dependency Status Version Installs

Adds common Glide commands to VS Code Command Palette

Requirements

You need to manually install Glide. Glide is a tool for managing the vendor directory within a Go package. For more information, see Glide Github repository

Install

  • Press Ctrl + Shift + P
  • Pick Extensions: Install Extension
  • Search for vscode-glide

Note!

This extension has no support for commands that require user imput after execution start, like glide get. These commands are executed using the parameter --non-interactive.

Available Glide commands on Command Palette:

  • Create | Init -> glide create (init)
  • Get -> glide get
  • Remove | rm -> glide remove (rm)
  • Update -> glide update (up)
  • Install -> glide install
  • Test | Novendor -> glide novendor (nv)
  • Name -> glide name
  • Tree -> glide tree
  • List -> glide list
  • Help -> glide help
  • Version -> glide --version

Snippets

Adds a Snippet for Glide configuration file. On yaml files, it simple renders the following text:

package: .
import: []

Usage

how use

Release Notes

https://github.com/vitorsalgado/vscode-glide/blob/master/release-notes.md

License

MIT © vitorsalgado