simple-javascript-indenter icon indicating copy to clipboard operation
simple-javascript-indenter copied to clipboard

. + started lines indent

Open guileen opened this issue 14 years ago • 0 comments

foo.bar()
  .bar()
  .bar();

var foo = 'bar'
  + 'bar'
  + 'bar'

it will be very nice if goto

 function(){                                                                                         
   var a = foo.bar()                                                                                 
              .bar()                                                                                 
              .bar()                                                                                 
              .bar();                                                                                

   var b = 'bar'                                                                                     
         + 'bar'                                                                                     
         + 'bar'                                                                                     
  }   

guileen avatar Dec 08 '11 05:12 guileen