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
- Host: GitHub
- URL: https://github.com/dvcrn/vscodecljs
- Owner: dvcrn
- Created: 2017-02-17T01:46:39.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-17T01:47:03.000Z (about 8 years ago)
- Last Synced: 2025-03-21T12:21:29.265Z (about 1 month ago)
- Topics: clojurescript, vscode, vscode-extension
- Language: Clojure
- Homepage:
- Size: 392 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

## 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.