-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Enerccio/stable
0.2.0 Release
- Loading branch information
Showing
85 changed files
with
3,263 additions
and
627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gradle" | ||
directory: "/" | ||
target-branch: "master" | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
|
||
## 0.2.0 - 230120 | ||
|
||
### Added | ||
|
||
- Added first version of inspector - so far only read-only. | ||
To access, start interactive debugging and then click on any local variable. | ||
- Macro expand. When you hover over a symbol that is a macro call in a form, | ||
it will macro expand it in the documentation. Due to async notion, | ||
you need to hover again to see it. | ||
- Basic completion suggestion working | ||
|
||
### Fixes | ||
|
||
- Changed internal environment to be more decoupled | ||
- Fixed code highlight for methods | ||
- Fixed bad package when package does not exist | ||
- Fixed lisp parser, `REFERENCE_LABEL` requiring `datum`, now it is stand alone | ||
- Fixed line comment highlight color | ||
- Fixed highlight on braces | ||
- no longer using standard BracePair but instead use internal brace matcher to prevent auto brace inserting | ||
|
||
## 0.1.1 - 230115 | ||
|
||
### Fixes | ||
|
||
- Fixed bug in build without certificates (oops!) | ||
- Fixed package detector to work with `#:` packages | ||
- Fixed settings to correctly restart on change | ||
- Fixed settings to save quicklisp path | ||
|
||
## 0.1.0 - 230115 | ||
|
||
Initial release | ||
|
||
### Added | ||
|
||
- Basic language parsing and lexing | ||
- REPL | ||
- Click on `+` icon to create REPL | ||
- Interactive debugger | ||
- Eval actions - right click menu in editor | ||
- Eval in region | ||
- Eval previous/next/current form | ||
- Eval file of current editor | ||
- Eval file action | ||
- Some basic `.cl`, `.lisp` and `.asdf` templates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Report any bugs please! | ||
|
||
I will think of what to write here at later date when it's bit bigger project. | ||
I will think of what to write here at later date when it's a bit bigger project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
org.gradle.jvmargs=-XX:MaxHeapSize=512m -Xms512m -Xmx1g | ||
|
||
# CL GO IC IU PS PY PC RD | ||
targetIDE=IC | ||
targetIDE=IU |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/main/java/com/en_circle/slt/plugin/SltCommonLispLanguage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/com/en_circle/slt/plugin/SltCompletionContributor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.en_circle.slt.plugin; | ||
|
||
import com.en_circle.slt.plugin.autocomplete.HeadCompletionProvider; | ||
import com.en_circle.slt.plugin.lisp.psi.SltPatterns; | ||
import com.intellij.codeInsight.completion.CompletionContributor; | ||
import com.intellij.codeInsight.completion.CompletionType; | ||
|
||
public class SltCompletionContributor extends CompletionContributor { | ||
|
||
public SltCompletionContributor() { | ||
extend(CompletionType.BASIC, SltPatterns.getHeadPattern(), new HeadCompletionProvider()); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.