< :the previous in number
^ :the list in numerical order
> :the next in number
P :the previous (in thread)
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
From: S2 [mailto:sto.giocando / motor.storm]
# thanks. even if 'hllo'[0, 2] looks better
upgrade?
> [RUBY_VERSION, RUBY_PATCHLEVEL, RUBY_REVISION, RUBY_PLATFORM]
=> ["1.8.7", 5000, 0, "i686-linux"]
> puts 'hllo'
hllo
=> nil
> puts 'hllo'[0, 2]
h
=> nil
> puts 'hllo'[0, 3]
hl
=> nil