generated from JetBrains/intellij-platform-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(editor): implement quote handling (#65)
* feat(editor): implement quote handling Signed-off-by: Luke Gareth Ribchester <luke@luke.gr> * docs(changelog): update entry Signed-off-by: Luke Gareth Ribchester <luke@luke.gr> * docs(changelog): update entry Signed-off-by: Luke Gareth Ribchester <luke@luke.gr> --------- Signed-off-by: Luke Gareth Ribchester <luke@luke.gr>
- Loading branch information
1 parent
e1dcc7c
commit d2968fd
Showing
8 changed files
with
291 additions
and
270 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 |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Enhanced string handling | ||
|
||
## [0.3.0] - 2024-05-03 | ||
|
||
### Added | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/io/kadena/pact/ide/editor/PactQuoteHandler.kt
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,8 @@ | ||
package io.kadena.pact.ide.editor | ||
|
||
import com.intellij.codeInsight.editorActions.SimpleTokenSetQuoteHandler | ||
import io.kadena.pact.language.psi.PactTokenSets | ||
|
||
|
||
class PactQuoteHandler : SimpleTokenSetQuoteHandler(PactTokenSets.STRINGS) { | ||
} |
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
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