Is there a way to insure the note being added is `project level scoped`?

I have this KM macro I use to add a note to the bottom of the active project list:

52

The only issue it has is that if the last note/task of the active project is indented more than a project level scope (is a subtask of another note/task). This macro will create the note underneath it (as another subtask :disappointed:).

Is there a way to modify above macro to insure that the note will be created at the project level scope?

So given this:

54

The macro would do this:

54

And not this:

55

I think you could simulate keystrokes:

  1. Command-Down (as you are already doing)
  2. Option-Return (to create a new line, but without auto-indent)
  3. Tab (to indent under project)

Option return will create a line above the currently active line and not below it. Otherwise this solution would work. Although I bound opt+return to something (even though I don’t mind rebinding it in order to make this use case work).

When I have this in TaskPaper:

a
	b^

Where ^ is the text cursor. And then I do Option-Return I get this:

a
	b
^

Is that not what you see?

1 Like

Indeed it does. I must have done something wrong first time I tried it. Thanks!

1 Like