In ubuntu file explorer when the user right clicks, it would be better to have an option to open hyper in the current directory like Launch Hyper here so that user will not need to navigate to current directory after opening the terminal
With Nautilus 3.14.3 I have an option to open terminal here when right clicking. So just set Hyper as your default terminal application and you will get this behavior.
I have used these commands to set Hyper as my default terminal application:
sudo update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/hyper 1
sudo update-alternatives --config x-terminal-emulator
and followed this to make Open in Terminal work!
Edited:
For Ubuntu 14.04 you need to install this
sudo apt-get install nautilus-open-terminal

It can be realized using nautilus-actions. This allows you to add custom menu points to your dropdowns in nautilus. (see screenshot)
Most helpful comment
With Nautilus
3.14.3I have an option to open terminal here when right clicking. So just set Hyper as your default terminal application and you will get this behavior.I have used these commands to set Hyper as my default terminal application:
and followed this to make
Open in Terminalwork!Edited:
For
Ubuntu 14.04you need to install this