Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update IntelliJ config files #382

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
6 changes: 6 additions & 0 deletions .idea/ant.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/processing4-app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" exported="">
<orderEntry type="module-library">
<library name="ant.jar">
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/ant.jar!/" />
Expand All @@ -45,7 +45,7 @@
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" exported="">
<orderEntry type="module-library">
<library name="ant-launcher.jar">
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/ant-launcher.jar!/" />
Expand Down
5 changes: 4 additions & 1 deletion build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,7 @@ Then copy that `jogl-all-src.jar` file to sit next to the `jogl-all.jar` folder

### IntelliJ

Using Eclipse isn't supported, and I've switched to IntelliJ. However, IntelliJ is baffling enough that I don't have good instructions yet on how to develop inside there. If you and IntelliJ have a better relationship than I do, [please help!](https://github.com/processing/processing4/issues/275)
For IntelliJ, just use the "File/New/Project from Version Control..." from the navbar or the "Get from VCS" button in the Main menu - then select GIT and type in `git clone https://github.com/processing/processing4.git` as the URL. Click "Clone" and the project will be downloaded and opened.

To run Ant tasks like build or run, open the Ant tab (defaults to the very right) and double-click your task. The build output can be seen in the "Messages" tab (select from the bottom tabs).

3 changes: 2 additions & 1 deletion core/processing4-core.iml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="jogl" level="project" />
<orderEntry type="library" name="gluegen-rt" level="project" />
<orderEntry type="library" name="jogl-all" level="project" />
</component>
</module>
1 change: 1 addition & 0 deletions java/src/processing/mode/java/CompletionGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -1693,6 +1693,7 @@ public List<CompletionCandidate> preparePredictions(final PreprocSketch ps,

// If the parsed code contains pde enhancements, take 'em out.
// TODO: test this
// The Processing Foundation: Running untested code since 2016
Eskaan marked this conversation as resolved.
Show resolved Hide resolved
TextTransform transform = new TextTransform(pdePhrase);
transform.addAll(SourceUtil.replaceTypeConstructors(pdePhrase));
transform.addAll(SourceUtil.replaceHexLiterals(pdePhrase));
Expand Down