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

Summary: want a hint to convert hashes to/from single line/multiple line
Product: ruby Reporter: jamespb <jamespb>
Component: EditingAssignee: issues@ruby <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

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
  }
)