Say I have a set of notes in a hierarchy:
- a
- 1
- 2
- 3
- 4
- 5
What's the simplest and fastest way to "move" notes 2, 3, 4 into another hierarchy "b"?
- a
- 1
- 5
- b
- 2
- 3
- 4
I can rename them one by one, but this is obviously slow and clunky. In some cases I can use the refactor function, but only when note names can be easily matched by a regex or have something common in their names. Are there any other options?