24

We have been using Unfuddle in our company for 1 year. All my colleagues can easily access Unfuddle tickets using Eclipse addon called Mylyn.

Does something like this exist for IntelliJ IDEA?

If not, can you suggest some alternative way to deal with Unfuddle tickets from IDEA?

sandalone
  • 41,141
  • 63
  • 222
  • 338

3 Answers3

18

In IntelliJ IDEA 2016.3.3 you can click on Tools->Tasks & Contexts->Configure servers.

It has a behavior close to Mylyn has.

Check also the answer bellow about the plugin "Focus on Active Task"

Regards

Carlos Rafael Ramirez
  • 5,984
  • 1
  • 29
  • 36
11

They guys at IntelliJ forum confirmed that such alternative does not exist. We hope this will change one day.

sandalone
  • 41,141
  • 63
  • 222
  • 338
9

Disclaimer: I'm the author of the plugin mentioned in this post.

I suggest trying out the Focus on Active Task plugin from the JetBrains repository, that I made a while ago.

This attempts to emulate Eclipse Mylyn's main functionality, by adding a Focus on Active Task toggle action on the View menu that filters the project tree with the currently active task/opened files.

Alt+click will also behave close to Mylyn's feature by temporarily unfiltering (showing all children of) specific tree nodes.

Jeto
  • 14,596
  • 2
  • 32
  • 46
  • Excellent I will try it out – Carlos Rafael Ramirez Jun 14 '18 at 12:26
  • Nice! Is the source code available? It seems like it only filters the project view and not functions like mylyn can do (mylyn can collapse non-task functions and filter the structure view too) – olejorgenb Aug 28 '19 at 09:07
  • @olejorgenb Thanks! Code isn't published atm, but I do plan to open source it at some point. I'll make sure to mention you again when it's done (hopefully in the coming weeks). And yes, it's still minimal compared to what Mylyn can do. – Jeto Aug 28 '19 at 10:10
  • How could I reset the context? Thanks! – 卢声远 Shengyuan Lu Jun 11 '21 at 10:00
  • @卢声远ShengyuanLu Can you explain what you mean by "reset the context"? Right now, the focused items (files) on the project view are synchronized with the open editor files. Whichever ones are open will be shown on the project view (unless you Alt+click a folder, which will temporarily reveal all files within it). You can use Ctrl+Shift+Q (default shortcut) to disable the filtering temporarily and then enable it back later. – Jeto Jun 11 '21 at 10:46
  • @Jeto sometimes I have *multiple tasks* to do, could I have multiple 'Active Task' to switch? – 卢声远 Shengyuan Lu Jul 20 '21 at 01:55
  • 1
    @卢声远ShengyuanLu Sure, that's the whole point! You can make use of IntelliJ's [Tasks and contexts](https://www.jetbrains.com/help/idea/managing-tasks-and-context.html) feature (you don't need to connect any issue tracker btw, just creating local tasks is enough), and then whenever you switch to another task, the IDE will remember the open editor files and the plugin will refresh the project tree accordingly. Let me know if that works for you. – Jeto Jul 20 '21 at 07:18