LightTable / Paredit

Light Table plugin for paredit ⛺
MIT License
35 stars 11 forks source link

move to next/previous sibling form #19

Open Mouvedia opened 9 years ago

Mouvedia commented 9 years ago
//example 1
[
  [ xxxx ]
  xx|xx
  [ xxxx ]
]
//go to next
[
  [ xxxx ]
  xxxx
  |[ xxxx ]
]

//example 2
[
  xxxx
  [ xx|xx ]
  [ xxxx ]
]
//go to next
[
  xxxx
  [ xxxx ]
  |[ xxxx ]
]

//example 3
[
  [
     xx|xx 
     [ xxxx ]
  ]
  [ xxxx ]
]
//go to next
[
  [
     xxxx 
     |[ xxxx ]
  ]
  [ xxxx ]
]

//example 4
[
  [ xxxx ]
  xx|xx
  [ xxxx ]
]
//go to previous
[
  |[ xxxx ]
  xxxx
  [ xxxx ]
]

I hope the examples are clear enough.