An open API service indexing awesome lists of open source software.

https://github.com/dvcrn/vscodecljs

Proof of concept vscode extension in ClojureScript
https://github.com/dvcrn/vscodecljs

clojurescript vscode vscode-extension

Last synced: about 1 month ago
JSON representation

Proof of concept vscode extension in ClojureScript

Awesome Lists containing this project

README

        

# README

This is a very simple proof of concept to see how vscode extensions could be written in ClojureScript instead of ts/js

![](resources/screenshots/1.png)

## Compiling

### With figwheel
```
lein figwheel
```

### Without figwheel
```
lein cljsbuild min
```

## Loading into vscode
```
code --extensionDevelopmentPath=
```

This will open a new vscode window with the extension loaded into it. Check the developer tools console for debug output.

Hit CMD+Shift+P to open the command pallete and execute 'Hello World'. This will load our extension and call the `activate` function.