dotCover in Rider eap - rider

I can't find a way to exclude/filter a project/namespace from dotCover in rider.
Can you please provide a navigation, or a shortcut on how to find the filter menu?
I am using Rider 2018.2.3 EAP, I have installed the dotCover. The operating system is windows.

Filtering feature is not supported in 2018.2 version, but it's planned for 2018.3: https://youtrack.jetbrains.com/issue/RIDER-17829.

Related

How to add a break point in Intelij IDEA to debug Rust code

I have installed Intellij IDEA on ubuntu with Rust plugin.
How to add a break point in Intellij IDEA to debut RUST code.
Do I need any additional plugin?
Debugging Rust code is available in CLion, IntelliJ IDEA Ultimate, PyCharm Professional, and GoLand. For IntelliJ IDEA Ultimate, PyCharm Pro, GoLand it is required to install the Native Debugging Support
plugin.
See plugin's documentation for more information: Debugging.
no need for extra plugins just add them like you would do in java (left click right of the number). but in order to debug (apply them) you'll need Native Debugging Support (i believe the ide autosuggests this plugin on the first debug run)

Installing Cursive plugin on WebStorm

I'm trying to install Cursive plugin to WebStorm 9 for ClojureScript. However, the plugin doesn't show up on 'Browse repository' tab in Setting->Plugin menu.
I tried to install it through downloading the plugin file from here and adding it from the disk, but WebStorm shows an error 'Error: Plugin Cursive is incompatible with current installation'.
Is there any way to install the plugin on WebStorm?
Cursive needs Java plug-in. Currently Java is not supported in WebStorm. It is possible that JetBrains are working on some basic support of Java in WebStorm and other Idea derivatives. To run Cursive you have to install Idea CE side by side with WebStorm or upgrade to Idea Ultimate.
Doesn't look like it. Or, it's not explicitly supported.
Cursive will work with IntelliJ versions 14, 14.1 and 15.
It does mention, earlier in that paragraph, that you should be able to use the Community Edition with it, though.
If you don’t have a licence for the Ultimate Edition, the free Community Edition is fine.

How to setup UML diagramming tool (powered by yFiles) for IntelliJ IDEA?

There is a cool diagramming tool for IntelliJ IDEA powered by yFiles.
Check out this video: https://youtu.be/cTg_ocVFmcs?t=36
I wonder if I can get this thing to work on IntelliJ IDEA (Community Edition). The problem is there is no such plugin available in the plugins repo. How to perform the setup?
The community edition only supports a limited number of plugins. The class diagram plugin is only supported in the Ultimate edition if I remember correctly.
You can always try a 30-day free trial of IntelliJ Ultimate (or RubyMine).

Eclipse new plugin Project: Not choosable

just an easy quesition but I can't find any answer in this wonderful world wide web...
I just want to create a new Plugin Project based on Eclipse Helios. Normally this feature should be shipped with this version (Version: Helios Service Release 2 Build id: 20110301-1815) but I can't choose it via "file->new->Project". Do I have sth. to install previously?
Thanks a lot for any help guys ... :)
It is also possible to do plugin development with any eclipse classic version. (I am working with 4.2)
For plugin development in eclipse classic version you need to go
Help-->Install New Software--> In work with select version url provided by eclipse it self. e.g. in case of 4.2 Juno it will be Juno - http://download.eclipse.org/releases/juno
It will render all the possible plugin provided by eclipse it self.
In that list there will a Eclipse plugin development environment in General purpose tools.
Or you can get that one by writing plug in filter text box.
Select Eclipse plugin development environment and install it.
Now you can able to do plugin development in classic version also.
Hope this will be helpful.
Install Eclipse for RCP and RAP developers.
If you already installed Eclipse you can add on the Plug-in Environment from within Eclipse
https://www.eclipse.org/forums/index.php/t/273044/
The Plugin Perspective is not installed.
To get it: Help->Install New Software
Work With: --All Available Sites--
In the Filter Box, type "Plug-in"
Look for something that says "General Purpose Tools" and expand it.
Look for "Eclipse Plug-in Development Environment"
Click Next a few times and install it, then restart.
Exact verbiage may depend on your Eclipse version.

Eclipse plug-in editor extension tab show “Generic” in “New” submenu

I am using "eclipse-rcp-helios-SR1-win32-x86_64"
64-bit eclipse running on JDK.
I am trying to add an action in my plugin via menu contribution. When I add "org.eclipse.ui.menus," right-click on it then select "New," I only the "Generic" option. I am expecting to see "menuContibution"
The issue is described in detail here, which also seems to include the solution: link
From what I understand, the version of eclipse I have - helio SR1 - is an SDK version and should have the source included in the package. I am not sure what I need to do to make those additional options show up.
if you have the "Generic" it means that you don't have the source plugins. But you have downloaded the right package (RCP one). I guess your download might be corrupted. Can you try downloading it again from a different mirror?
i am try to this answer is useful.
step-1: Eclipse menu bar Select Help menu
step-2: select Install New Software
step-3: Eclipse project update link (Required version) below image
step-4: Choose Eclipse plugin Development Tool and
step-5: After Next button click to finish.
Eclipse can Restart after working successful.
Installing Eclipse plugin Development Tool, as per Bharat Zala answer, is not enough. It still did not work for me:
I had to install Eclipse SDK and Eclipse Platform SDK packages:
Then it finally worked:
Note:
Lars Vogel in his book "Eclipse Rich Client Platform", in chapter 8 Install Eclipse IDE for RCP development, he advises for to
Download the Eclipse Software Development Kit (SDK) as a recommended Eclipse edition for RCP/PDE development.
Most people probably have installed more mainstream Eclipse editions like Eclipse for Java developers. Installing Eclipse SDK and/or Eclipse Platform SDK as packages to them later should re-create SDK installation as advised by Lars.
It did not work for me even after installing both.
I did go Update site " http://download.eclipse.org/eclipse/updates/4.5" and when it lists the different components.
Please unflag the "Group items by category" check box and Install "Eclipse RCP SDK" and related components.
Thant should fix the issue.
Thanks