In the last few days, I modified my IntelliJ Settings and installed a few plugins.
Some of these plugins added new functions to the Generate Menu.
enter image description here
I'd like to remove some functions and rearrange the rest.
So my question is, where can I configure the functions of the generate menu?
Related
In IntelliJ 2017.1.2
I defined a scope with the intention to filter files with specific file endings in the project tool window. Yet I don't see a way to make this happen.
How can I filter by scope in the project tool window?
I'm not sure if it's the same under 2017.1.2, but in IntelliJ 2018.1.6 you just need to click the Project dropdown menu, and select the Scope you want to see.
PS. I found this here.
I want to change the look and feel of entire Webstorm editor. How can I add more themes in the Appearance section?
As of now it lists only 2 option, Default and Darcula.
The 'Theme' dropdown in your snapshot actually refers to Look & Feel in the Intellij/Webstorm parlance. This is also seen if you try doing a View -> Quick Switch Scheme :
Notice that the options in the above correspond to the 'Themes' dropdown in your snapshot.
I would imagine that creating a new Look&Feel would be a non-trivial task. This is somewhat substantiated by https://stackoverflow.com/a/27864988/325742:
Write a plug-in to add a new LAF. Keep in mind this is a lot of work.
It took the JetBrains team a year to develop the Darcula L&F and that
was with dedicated graphic artists to create a whole suite of icons
and recommend color combinations. Since the IntelliJ IDEA Community
Edition is open source, you could use that source code to develop your
plug-in. I'm pretty sure Darcula is available in the community
edition.
Therefore, you may not find a lot of stuff out there that change the whole Look and Feel of a Jetbrains product (like IntelliJ or WebStorm).
However, the best place to look for it would be in the plugins section.
Therefore:
First option: Theme Plugins
Note that, the complete appearance of Intellij changed when I installed this, however the plugins (I tried Material Theme UI) did not appear in the dropdown list.
Second Option : https://github.com/sdvoynikov/color-themes
This is just an editor color scheme and not a full fledged L&F plugin.
Download a color theme from there, then go to File -> Import Settings and choose the downloaded file after which you should see the following:
Finally, restart Webstorm:
I created some batch work and integrated it as ExternalTool to the IntelliJ IDEA. as described here: Configure Intellij IDEA to run batch file
But how can I add buttons to my toolbar that will activate the batch that defined as external tool?
It is quite easy.
Assuming that you already have an External Tool configured just right click on the menu bar and choose Customize Menus and Toolbars...:
Next step is to mark the last item (whatever that is in your setup) in Main Toolbar and select Add After...:
Now you can select your external tool from the Choose Actions To Add window (here you can also select an icon to use):
Action has been added:
And your button has been added to the toolbar:
I am just evaluating IntelliJ IDEA. Installed it with default procedures.
I created a simple Spring project and when I right click on the project, not able to see the the bottom part of the pop up menu. The issue is because of my laptop screen's height is less and could not fit the entire set of pop-up menu items.
In eclipse there is a drop down arrow, so that I can scroll to the menu items, which do not fit in the screen. How can I get the similar eclipse functionality in IntelliJ?
Well, you are only missing one useful feature (Genereate Java code from wsdl). I would ignore it unless you need to generate such code.
If you want to run this generation you can do this with Ctrl + Shift + A (and start typing feature name)
//btw, it is better to make code generation in maven anyway
I'm developing two GEF plugin and one RCP eclipse plugin, I have the next problem:
I have one plugin with multitab editor and i would like to open the editor of plugin on first tab and open the editor of second plugin on second tab.
I mean if I open the file in first tab it uses the editor A, but if I open the same file in second tab, it uses the editor B of second tab.
The rcp pluging only serves as a base for GEF plugins.
is it possible?
regards
I haven't tried it, but you can use the extension org.eclipse.ui.editors.documentProviders in order to implement your logic. Here is a link of the eclipse online help.
EDIT: The problem you would have is to synchronize the both instances, when you open them.Or you can use one with change listeners