https://github.com/flaque/copen
A fuzzy opener for visual studio code built on autojump
https://github.com/flaque/copen
Last synced: 2 months ago
JSON representation
A fuzzy opener for visual studio code built on autojump
- Host: GitHub
- URL: https://github.com/flaque/copen
- Owner: Flaque
- Created: 2018-09-08T05:26:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-08T05:32:15.000Z (over 6 years ago)
- Last Synced: 2025-01-20T10:13:59.151Z (4 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# copen
`copen` is a wrapper around visual studio code's `code` cli command that uses autojump to fuzzy match folders.
Basically it's a replacement for doing this:
```sh
$ j proj
~/path/to/my-project
$ code .
```Instead with copen, just do this:
```sh
copen proj
```## Install
`copen` assumes you have [autojump](https://github.com/wting/autojump) and visual studio already installed.
If you have wget, run this:
```
wget -O /usr/local/bin/code-open https://raw.githubusercontent.com/Flaque/copen/master/copen; chmod +x /usr/local/bin/code-open
```If you don't have wget and are on macos, then install wget:
```
brew install wget
```