vscli

MIT License Continuous integration Crates.io Homebrew

A CLI tool to launch vscode projects, which supports devcontainers.

Features

Installation

Cargo

Install vscli using cargo on Windows or Linux:

sh cargo install vscli

Homebrew

Install vscli using brew on Linux:

sh brew install michidk/tools/vscli

Additional steps

You can set a shorthand alias for vscli in your shell's configuration file:

sh alias vs="vscli --insiders"

Usage

Commandline

After installation, the vscli command will be available:

```sh USAGE: vscli [FLAGS] [OPTIONS] [args]...

FLAGS: -h, --help Prints help information -i, --insiders Whether to launch the insiders version of vscode -V, --version Prints version information

OPTIONS: -b, --behaviour Launch behaviour [default: detect] [possible values: detect, force-container, force- classic] -v, --verbosity The verbosity of the output [default: info]

ARGS: The path of the vscode project to open ... Input arguments to pass to vscode ```