< :the previous in number
^ :the list in numerical order
> :the next in number
P :the previous artilce (have the same parent)
N :the next (in thread)
|<:the top of this thread
>|:the next thread
^ :the parent (reply-to)
_:the child (an article replying to this)
>:the elder article having the same parent
<:the youger article having the same parent
---:split window and show thread lists
| :split window (vertically) and show thread lists
~ :close the thread frame
.:the index
..:the index of indices
Nikolai Weibull wrote:
> % python
> Python 2.3.5 (#1, Apr 28 2005, 14:11:32)
> [GCC 3.3.5-20050130 (Gentoo Linux 3.3.5.20050130-r1,
> ssp-3.3.5.20050130-1, pie- on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> >>> quit
> >>> 'Use Ctrl-D (i.e. EOF) to exit.'
> >>>
> %
>
> Man, seriously. That's so fucking funny. Can't we make irb do
> something similar? I really hate that irb quits on me when I write
> "quit" at the prompt. I'd much rather have it exit on me on ^D only. I
> especially like how they take the time to explain that ^D is EOF,
Just put "def exit() 'Use Ctrl-D (i.e. EOF) to exit.' end" in your
..irbrc file. Then you'll never have to worry about it again.
Personally, I don't have a problem with involuntarily typing "exit"
into IRB. Anyway, the exit method is part of the standard library, not
a function of IRB. I don't think changing it by default in IRB would be
a good thing.