Skip to content

Commit

Permalink
[ release ] Releasing 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Feb 20, 2018
1 parent e8bdb95 commit feff100
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions res/META-INF/change-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<li>Display preview in LaTeX completions</li>
<li>Basic jump to definition</li>
<li>Basic renaming</li>
<li>Basic find usages</li>
<li>Clearer file templates</li>
<li>Injection for DocStrings in types and modules</li>
<li>Big refactor on Regular expression highlighting</li>
Expand Down
1 change: 1 addition & 0 deletions res/META-INF/description.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<li>File templates</li>
<li>Completions</li>
<li>Jump to definition</li>
<li>Find usages</li>
<li>Renaming</li>
<li>Doc string generation</li>
<li>Try Evaluate</li>
Expand Down
8 changes: 4 additions & 4 deletions src/org/ice1000/julia/lang/psi/julia-symbol.kt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package org.ice1000.julia.lang.psi

import com.intellij.navigation.*
import com.intellij.navigation.GotoClassContributor
import com.intellij.navigation.NavigationItem
import com.intellij.openapi.project.Project
import com.intellij.psi.search.GlobalSearchScope
import com.intellij.psi.stubs.StubIndex
import com.intellij.psi.stubs.StubIndexKey
import org.ice1000.julia.lang.psi.impl.JuliaSymbolMixin

// TODO this doesn't work at all
abstract class JuliaNavigationContributorBase<T>
protected constructor(
private val indexKey: StubIndexKey<String, T>,
private val clazz: Class<T>) : ChooseByNameContributor,
GotoClassContributor where T : NavigationItem, T : JuliaSymbolMixin {

private val clazz: Class<T>) : GotoClassContributor where T : NavigationItem, T : JuliaSymbolMixin {
override fun getNames(project: Project, includeNonProjectItems: Boolean) =
StubIndex.getInstance().getAllKeys(indexKey, project).toTypedArray()

Expand Down

0 comments on commit feff100

Please sign in to comment.