This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 119157 - want a hint to convert hashes to/from single line/multiple line
Summary: want a hint to convert hashes to/from single line/multiple line
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Editing (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-17 00:17 UTC by jamespb
Modified: 2011-01-28 20:11 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jamespb 2007-10-17 00:17:36 UTC
I want a hint to swap between:

{:a => 1, :b => {:c => :d}}

and 

{
  :a => 1,
  :b => {
    :c => :d
  }
}

I also want it for method arguments:

foo(:a => 1, :b => {:c => :d})
foo(
  :a => 1,
  :b => {
    :c => :d
  }
)