< :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
On Thu, May 12, 2011 at 1:51 PM, Chad Perrin <code / apotheon.net> wrote:
> I've been seeing a lot of this lately:
>
> def foo(bar)
> puts bar
> end
>
> For me, at least, this tends to make code kind of difficult to read.
> This is what I've always seen in Ruby code before recent trends:
>
> def foo(bar)
> puts bar
> end
Is this is "real" code (e.g., source of gems, etc.) or in snippets? If
its cut and pasted from, e.g., irb with autoindent it will look like
that.
I hope no one actually does real code that way...