EasyShell does not open terminal correctly on Ubuntu

I am using EasyShell plugin with Eclipse Kepler on Ubuntu 14.04

The plugin works with fin when I select explore folder or file, but it does not work if I select open selected folder \ file in the terminal. He always opens a terminal in my home folder.

The configured gnome-terminal commands run fine manually, but not through the plugin. enter image description here

+6
source share
3 answers

I fixed it by simply removing the quotation marks.

Easy shell configs

+10
source

I had the same problem. I'm not sure how to fix this using the user interface, but you can directly edit the settings file to fix it:

Edit this file:

 [WORKSPACE]/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.tetrade.eclipse.plugins.easyshell.prefs 

And add this:

 targetPreference=gnome-terminal --working-directory\={1} 
0
source

For those whose problem is not resolved, my solutions are as follows:

  • Go to Settings → Easyshell
  • Find the open (Gnome) terminal here and click on it.
  • Click "Edit" and change the command with

    gnome-terminal --working-directory = $ {easyshell: container_loc}

0
source

Source: https://habr.com/ru/post/969624/


All Articles