Comment on hr for your terminalparentComments−gnachman12yThe iTerm2 nightly builds have everything you asked for. See here for info about marks in history: https://code.google.com/p/iterm2/wiki/MarksAndNotesMore info about the general idea of integrating the terminal with the shell, including command history: http://www.iterm2.com/shell_integration.htmlI expect FinalTerm will do something along the lines of marks as well, and has introduced some cool ideas with history.Of course, iTerm2 has has had autocomplete for years.If you'd like a shinier <hr> in iTerm2, you could use this script:#!/bin/bash # usage: hr image.png printf '\033]1337;File=inline=1;width='`tput cols`';height=8px;preserveAspectRatio=0:' base64 < $1 printf '\007'
Comments
The iTerm2 nightly builds have everything you asked for. See here for info about marks in history: https://code.google.com/p/iterm2/wiki/MarksAndNotes
More info about the general idea of integrating the terminal with the shell, including command history: http://www.iterm2.com/shell_integration.html
I expect FinalTerm will do something along the lines of marks as well, and has introduced some cool ideas with history.
Of course, iTerm2 has has had autocomplete for years.
If you'd like a shinier <hr> in iTerm2, you could use this script:
#!/bin/bash # usage: hr image.png printf '\033]1337;File=inline=1;width='`tput cols`';height=8px;preserveAspectRatio=0:' base64 < $1 printf '\007'