Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of the Intellij Commander?

Can somebody tell me what the purpose of the Intellij Commander is?

like image 256
benstpierre Avatar asked Feb 17 '10 16:02

benstpierre


People also ask

What is the purpose of IntelliJ?

Apart from providing smart navigation and coding assistance, IntelliJ IDEA integrates the essential developer tools and lets you debug, analyze, and version the code base of your applications from within the IDE.

How use IntelliJ command line?

Opening a Terminal Window We can open the terminal window with ⌥F12 on macOS, or Alt+F12 on Windows and Linux. The terminal supports all the same commands that the operating system supports. and press enter. When MongoDB is running in the terminal session, we can go back to writing the application code in the editor.

How do I use command line arguments in IntelliJ?

From the main menu, select Run | Edit Configurations or choose Edit Configurations from the run/debug configurations selector on the toolbar. In the Run/Debug Configurations dialog that opens, select a configuration where you want to pass the arguments. Type the arguments in the Program arguments field.


1 Answers

http://jetbrains.net/devnet/docs/DOC-17 :

The two-panel Commander paradigm is a way of representing a hierarchy which provides the following benefits when working with the project elements:

  1. In contrast to the tree-mode views, the Commander always shows only one hierarchy level which is rather convenient in many situations (e.g. when you are permanently working only with one package and don't want or just don't need to view the entire hierarchy-tree)
  2. It provides a very convenient interface for copying and moving packages/classes (i.e., when using copy/move operations in one of the two panels, the destination is automatically suggested according to the location currently expanded in the opposite panel). For details on the operations available from the Commander, please look at the popup menus that appears when you right-click on different nodes in the commander tree. These menus are context-dependent and allow different operations on the elements of different types.

If you don't use it, you can always disable the Commander plug-in in Settings | Plugins.

like image 156
CrazyCoder Avatar answered Oct 02 '22 15:10

CrazyCoder