Skip to content

Commit

Permalink
Merge pull request #13 from hylang:0.0.3
Browse files Browse the repository at this point in the history
0.0.3
  • Loading branch information
CFiggers authored Dec 21, 2022
2 parents 4a2851d + 7356f4c commit c4fd439
Show file tree
Hide file tree
Showing 120 changed files with 16,510 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 0.0.3 (Dec 20, 2022)
- Added ParEdit-style structural editing
- Added format-on-type (incl. auto-indentation)
- Bug fixes

## 0.0.2 (Nov 24, 2022)
- Improved syntax highlighting.

Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,25 @@ Features:
- [x] Basic Hy code snippets
- [x] Code evaluation shortcuts
- [x] Improved syntax highlighting
- [x] [Paredit](https://www.emacswiki.org/emacs/ParEdit)-style structural editing based on S-expressions (slurping, barfing, dragging, killing, rewrapping, splicing, raising, navigation, auto-balancing for parens and other wrappers `[({""})]`)
- [x] Auto-formatting on edit (esp. auto-indentation)

Planned features:
- [ ] Auto-formatting on edit (esp. auto-indentation)
- [ ] [Paredit](https://www.emacswiki.org/emacs/ParEdit)-style structural editing based on S-expressions (slurping, barfing, dragging, killing, rewrapping, splicing, raising, navigation, auto-balancing for parens and other wrappers `[({""})]`)
- [ ] Intellisense code completion for built-in Hy functions and macros

## Installation
## How to Install

### VS Code Extension Marketplace

1. Navigate to the VS Code Extension marketplace within VS Code.
2. Search for "vscode-hy (hylang official)" and install as usual.

### Local Install

1. Navigate to your local .vscode (or .vscodium) extension directory (e.g. `$ cd ~/.vscode/extensions`)
2. Clone this repo within that directory (e.g. `git clone https://www.github.com/hylang/vscode-hy`)
3. Reload or relaunch any open VS Code/VS Codium windows


## Contribution

Issues and pull requests welcome.
Expand Down
7 changes: 7 additions & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{:deps {zprint/zprint {:mvn/version "1.2.2"}
cljfmt/cljfmt {:mvn/version "0.8.0"}
thheller/shadow-cljs {:mvn/version "2.18.0"}
org.clojars.liverm0r/dartclojure {:mvn/version "0.1.10-SNAPSHOT"}
#_#_org.clojars.liverm0r/dartclojure {:local/root "../DartClojure"}}
:paths ["src/cljs-lib/src"
"src/cljs-lib/test"]}
Loading

0 comments on commit c4fd439

Please sign in to comment.