Skip to content

Commit

Permalink
boyscouting
Browse files Browse the repository at this point in the history
  • Loading branch information
amolenaar committed Sep 6, 2015
1 parent c81b74e commit bf41975
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,18 @@ The plugin fully functional and supports the following features:
* Folding of collapsible sections
* Create wiki page action

This plugin is available via the [IntelliJ plugin repository].

Building the plugin
===================

Prerequisites
-------------
Run `./gradlew dist` to build the plugin distribution.

Participating
=============

If you want to help out with the plugin, please check the [wiki] for tasks that are still to be done.

To develop on the plugin you'll need IntelliJ (14).

Make sure the following plugins are enabled:
Expand All @@ -31,15 +38,6 @@ Make sure the following plugins are enabled:
* Plugin DevKit
* UI Designer

Read the [Guidelines for plugin development] for info on writing a plugin.

Try their [Custom language support tutorial].

Building
--------

Run `./gradlew dist` to build the plugin distribution.

Run `./gradlew idea` to generate the module and project files. Because this is a IntelliJ plugin project, you should
not try to import the gradle file directly in IntelliJ.

Expand All @@ -55,10 +53,10 @@ Of course you can also build the plugin with Gradle: `./gradlew build`.

I use the following VM options for the plugin: `-Xms128m -Xmx750m -XX:MaxPermSize=350m -XX:ReservedCodeCacheSize=225m -XX:+UseCompressedOops`, for what it's worth.

Participating
=============
Read the [Guidelines for plugin development] for info on writing a plugin.

Try their [Custom language support tutorial].

If you want to help out with the plugin, please check the [wiki] for tasks that are still to be done.

License
=======
Expand All @@ -69,6 +67,7 @@ Feel free to fork and submit pull requests. I'll try to get them into the mainli

[IntelliJ]: http://www.jetbrains.com/idea/
[Fitnesse]: http://www.fitnesse.org/
[IntelliJ plugin repository]: https://plugins.jetbrains.com/plugin/7908
[Guidelines for plugin development]: https://www.jetbrains.com/idea/help/plugin-development-guidelines.html
[Custom language support tutorial]: https://confluence.jetbrains.com/display/IntelliJIDEA/Custom+Language+Support
[wiki]: https://github.com/amolenaar/idea-fitnesse/wiki
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class WikiLinkReference(element: WikiLink) extends PsiReferenceBase[WikiLink](el

targetDir match {
case null => null
case _ => targetDir.findFile("content.txt")
case _ => targetDir.findFile(FitnesseFileType.FILE_NAME)
}
}

Expand Down

0 comments on commit bf41975

Please sign in to comment.