Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

There are several things I would like to be better in Ubuntu Terminal Emulator.

  • coloring, like in the source code

  • Copy and paste keyboard shortcuts that I used all the time in Windows: Ctrl-C and Ctrl-V

(Most of people here in Ubuntu use Ctrl+C and Ctrl+V keyboard shortcuts to copy and paste everywhere except the terminal! I think it's annoying for newcomers, and I don't worry about historical reasons)

  • A feature to save all the output to log file

UPDATE:

Can the terminal be a powerful feature-full user-friendly tool like a modern IDE? The Linux user can spend 30% of time in the terminal. Programmers no longer code in a notepad. Can I see the history pane? Suggestions? Directory pane? Commands list? Search for words in an output? Contextual behavior? "Search in Google" for a mouse right-click. Tips and tricks learning?

Time is money! Please, people, give me a link to the 21st - century terminal.

share|improve this question
Output data to log file. ls > file.txt. Search for words in output ls | grep .jpg. – Anonymous Nov 14 '11 at 17:53
3  
I find your title amusing because Gnome-terminal is much more featured than the default Windows terminal. – Kris Harper Nov 14 '11 at 18:59
@root45 Yep, you are right, but Windows has a lot of administrating utils where everything is sorted nicely. I've not used terminal in Windows much – Dan Nov 14 '11 at 19:38

3 Answers

The second task can be done running following commands in terminal:

gconftool-2 -t str -s /apps/gnome-terminal/keybindings/copy "<Control>c"
gconftool-2 -t str -s /apps/gnome-terminal/keybindings/paste "<Control>v"
share|improve this answer
Please use the Post answer button only for actual answers. You should modify your original question to add additional information. – RolandiXor Nov 14 '11 at 17:33

actually, the Gnome-terminal do the coloring part. For the example, use the change directory command, cd and navigate into a folder, sometimes you see things colorful. The color differentiate things into folders, files with different permissions, archives and so on.

and for the second task, the cut and paste key required additional keyboard button to be pressed, that is the shift button. If you are already know about the shift button, ignore this :D (actually, it is pretty hard for me too to press the shift button, already accustomed with ctrl + c button since little kid... haha

share|improve this answer

Try CLI Companion:

What you are looking for is CLI Companion. It has just about all the features you are looking for, and then some :). Code colouring comes with your terminal's profile and some other terminal settings, so you should configure that in your GNOME Terminal preferences, and possibly install BashstyleNG as well.

To install CLI Companion:

Add the ppa:

ppa:clicompanion-devs/clicompanion-nightlies

And then update your sources:

sudo apt-get update

Then install clicompanion:

sudo apt-get install clicompanion

I will add screenshots and a bit more info later, as I am not on my main laptop where I have it installed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.