Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5b7a400
Add proper parsing for Go
chabad360 Jun 24, 2024
eb2a76b
Fix expressions not handling braces properly
chabad360 Jun 26, 2024
81aa792
Make parser things work a lot nicer (i.e. properly handle different k…
chabad360 Jun 26, 2024
09998f7
Found a kludge for white space, it's not perfect, but it's good enoug…
chabad360 Jun 26, 2024
26d6cc3
small revert
chabad360 Jun 26, 2024
0141707
fix tests, CSS still needs to become supported, and we need to add a …
chabad360 Jun 26, 2024
4973e6f
adding a todo
chabad360 Jun 26, 2024
52ce4dd
fix attribute single quotes
chabad360 Jun 26, 2024
06ef4e0
make more things work better
chabad360 Jun 26, 2024
fcd0f3d
make some things more sane and start fixing tests
chabad360 Jun 26, 2024
94df2fc
fix component stupidities, however, we still need some sort of way to…
chabad360 Jun 26, 2024
7474b32
fix some tests
chabad360 Jun 26, 2024
c1dcbd7
Handle CSS (i.e. CSS no longer breaks stuff, but it doesn't really wo…
chabad360 Jun 26, 2024
33fd94a
import templ directly (avoids a bunch of errors)
chabad360 Jun 26, 2024
b63ea88
do the string result check better, avoid some errors
chabad360 Jun 27, 2024
14ca47a
small lexer improvement
chabad360 Jun 27, 2024
f6781df
organize
chabad360 Jun 27, 2024
dabf1e5
fix bug with larger expressions and use a better definition for if bl…
chabad360 Jun 28, 2024
8caf8f5
use block definition for switch and for
chabad360 Jun 28, 2024
37fd8fe
fix tests
chabad360 Jun 28, 2024
e36a90a
fix auto-import corruption (I think) and fix components ending early
chabad360 Jun 30, 2024
f21a073
include whitespace in expressions to avoid awkward issues
chabad360 Jun 30, 2024
52a299e
fix some lexing issues with expressions
chabad360 Jun 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platformVersion = 2023.2.4

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins = org.jetbrains.plugins.textmate
platformPlugins = org.jetbrains.plugins.textmate, org.jetbrains.plugins.go:232.10203.2

pluginSinceBuild = 232

Expand Down
Loading