Skip to content

Commit 5a2488c

Browse files
committed
Add support for "midi" type
1 parent 9d94f06 commit 5a2488c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Icons for script declarations.
1212
- Support for varclan and varclansetting.
1313
- Trigger support for shiftop and onclick variants.
14+
- Support for "midi" type.
1415

1516
### Changed
1617

src/main/kotlin/io/runescript/plugin/ide/config/RsConfig.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ object RsConfig {
1919
"seq",
2020
"stat",
2121
"synth",
22+
"midi",
2223
"coord",
2324
"char",
2425
"fontmetrics",

src/main/kotlin/io/runescript/plugin/lang/psi/type/RsPrimitiveType.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ enum class RsPrimitiveType(val literal: String, val referencable: Boolean = true
88
SEQ("seq"),
99
STAT("stat"),
1010
SYNTH("synth"),
11+
MIDI("midi"),
1112
COORD("coord"),
1213
CHAR("char"),
1314
FONTMETRICS("fontmetrics"),

0 commit comments

Comments
 (0)