Jakub Chrzanowski
302968b024
[Code Samples Inspection] Java > Internationalization > Incorrect string capitalization
2020-04-16 11:21:20 +02:00
Jakub Chrzanowski
df7afcd9a9
[Code Samples Inspection] Redundant suppression
2020-04-16 11:13:02 +02:00
JohnHake
ca103ddb0f
[simple language] fix parsing test failures
...
regenerate files after TPV-5209
2020-04-13 09:59:20 -07:00
Jakub Chrzanowski
0a69886c06
TPV-5209 http -> https
2020-04-13 12:09:48 +02:00
JohnHake
82bbf5b98b
[code samples] Update to 2020.1 IntelliJ Platform IJSDK-802
2020-04-09 11:12:46 -07:00
Yann Cébron
13cfe2c71f
gradle-intellij-plugin 0.4.18
2020-04-02 11:40:17 +02:00
JohnHake
8108a047ef
[code samples] update to 2019.3.4 platform
2020-03-27 13:55:09 -07:00
Yann Cébron
7f4c56b758
gradle-intellij-plugin 0.4.17
2020-03-24 11:20:17 +01:00
JohnHake
4d6895589d
IJSDK-424
2020-03-18 18:42:50 -07:00
Yann Cébron
f4797cc011
[simple language] SimplePsiImplUtil: cleanup
2020-03-06 17:18:21 +01:00
Yann Cébron
29ff4cd931
[code samples] remove explicit type
2020-03-06 17:14:43 +01:00
Yann Cébron
4fa730da10
[simple language plugin] SimpleStructureViewElement: cleanup
2020-03-06 17:02:10 +01:00
Yann Cébron
cccacc3303
[code samples] add missing @NotNull
2020-03-06 16:59:29 +01:00
JohnHake
50088bb8db
New Copyright in code samples
2020-02-19 21:51:48 -08:00
John Hake
e1150a78b0
Merge pull request #251 from olada/patch-1
...
Fix typo
2020-02-16 12:03:39 -08:00
David
b5990d0609
Fix typo
2020-02-16 14:33:03 +01:00
JohnHake
480f3aaa28
No "_" in <id>
2020-02-15 20:13:54 -08:00
Jakub Chrzanowski
703196d07f
IJSDK-786 Convert code sample "run_configuration" to Gradle
2020-02-14 11:28:52 +01:00
JohnHake
4d7184cbe2
Clarify EPs
2020-02-13 13:43:25 -08:00
JohnHake
5965b1dcb7
Incorporate PR247
2020-02-12 12:40:28 -08:00
JohnHake
335974458e
Draft Complete
2020-02-12 12:24:49 -08:00
JohnHake
5084f24168
Checkpoint IJSDK-479B
2020-02-11 19:35:37 -08:00
JohnHake
60df3ded76
Incorporate Review
2020-02-10 09:15:27 -08:00
JohnHake
f4fb5b1b31
Delete DevKit, add Gradle simple_language_plugin
2020-02-05 20:39:11 -08:00
JohnHake
0dd8eca961
Add simple_language and updates to simple_language_plugin
2020-02-05 19:28:43 -08:00
mongolyy
6a41ceeaed
Add override annotation
2019-12-26 16:07:28 +09:00
Dmitry Jemerov
14d84eff4c
Avoid "leaf token" warning in SimpleLineMarkerProvider
2019-10-11 14:05:51 +02:00
JohnHake
ceb5bb3507
Fix text ranges
2019-10-07 13:39:02 -07:00
JohnHake
80d358f5ba
Fixed missing <depends> elements, refactored obsolete kotlin_demo.
2019-06-13 16:59:30 -07:00
John Hake
4baf7c704e
Cleanup build warnings, updated since-build, removed ModuleComponent. ( #154 )
...
* Cleanup build warnings, updated since-build, removed ModuleComponent.
* Refactor facet_basics for functionality/clarity. Incorporate feedback.
* Incorporate additional feedback.
2019-03-11 19:13:44 +01:00
Yann Cébron
c19be9cb7b
Simple Language Plugin: cleanup plugin.xml
2018-12-18 09:42:02 +01:00
Steve Ramage
45e7f3cf97
Update Simple.flex
...
Changed the fallback character from . to [^] since this serves as a basis of other lexers.
2018-08-22 18:26:49 -07:00
Dmitry Jemerov
d086363559
Fix nullability issues in SimpleStructureViewElement (IJSDK-333)
2018-03-19 12:18:43 +01:00
Vitalii Dmitriev
f0c2d8a50c
Remove passing a file extension explicitly.
...
Hello!
In this code, the `SimpleFileType` instance passed as the first argument and the `"simple"` file extension as the second parameter.
As far as I can see in FileTypeManagerImpl:263:
```java
@Override
public void consume(@NotNull FileType fileType) {
register(fileType, parse(fileType.getDefaultExtension()));
}
```
There is no need to declare it explicitly as it is taken by calling `SimpleFileType.#getDefaultExtension()` by default, so this parameter is redundant.
To make tutorial more simple, I suggest this removal: seeing the second parameter is a bit confusing when we're passing the same value, returned from `getDefaultExtension()`.
Since the tutorial shows the basics, not a flexibility of an API, the parameter can be removed.
Thanks!
2018-02-13 23:12:24 +03:00
Matt Ellis
825956dde6
Update custom language tutorial
2017-10-12 12:11:42 +01:00
Ian Lesperance
78fc8cfd63
Explicitly depend on SimpleLanguage.INSTANCE ( #34 )
...
The use of `Language.findInstance()` implicitly depended on the fact that
`SimpleLanguage.INSTANCE` was referenced at some earlier point in time. In this
case, that happens because the instantiation of `SimpleParserDefinition`
triggers the instantiation of `COMMENTS`, which relies on
`SimpleTypes.COMMENT`.
When basing one's work on this sample project, however, one may run into
issues. Specifically, the absence of a custom comment token type will mean a
failure to correctly instantiate the singleton language object. Making the
dependence on `SimpleLanguage.INSTANCE` explicit prevents that issue from
occurring.
2017-02-16 00:12:29 +03:00
Yann Cébron
d452237c40
plugin descriptors: remove obsolete idea-plugin@version attribute (IDEA-163694)
2016-11-11 17:48:01 +01:00
cheptsov
6bcf8623e5
IJSDK-203 Confusing grammar and no info on comments and whitespaces
2016-11-03 16:45:34 +01:00
cheptsov
e3943a8d71
IJSDK-203 Confusing grammar and no info on comments and whitespaces
2016-11-03 13:23:01 +01:00
Yann Cébron
a86e2b4480
sample projects plugin.xml: update confluence to jetbrains.org links
2016-11-02 21:26:45 +01:00
cheptsov
b31ca385c9
Fixed broken tests and compilation
...
Rollbacked some of Breandan's changes
2016-11-02 14:42:59 +01:00
Yann Cébron
189fa4c03b
IJSDK-76 Optimize screenshot file sizes
2016-10-27 10:46:40 +02:00
Breandan Considine
89638a3694
Prefer wildcard imports to maximize vertical visibility in code samples
...
Too bad there isn't a way to filter lines with Jekyll Liquid tags
2016-03-21 16:59:17 -04:00
Breandan Considine
7b03fa6f39
Tidy up code samples and wrap at 80 chars #IJSDK-24
2016-03-21 16:08:47 -04:00
Yann Cébron
1793463daf
simple_language_plugin: SimpleReferenceContributor cleanup
2015-12-09 20:27:56 +01:00
breandan
583e331206
Fix simple_language_plugin tests
2015-12-05 11:47:23 -05:00
breandan
2cf2e55eb9
Update plugin code samples to use canonical project structure
2015-12-05 08:56:10 -05:00
breandan
459c3d52a4
Fix compiler error
2015-12-03 16:41:31 -05:00
breandan
aeb55b1a27
Share run configurations and inherit the project output path
2015-12-03 16:23:33 -05:00
breandan
0bfab58cc8
Add code_sample projects as sub-modules inside intellij-sdk-docs
2015-12-03 15:28:36 -05:00