I am new to org-mode (using it under evil) and been using it as a very nice ASCII-based TODO with scheduled times and completion dates. I have a simple question - and in my case, I think an image is worth 1000 words...
Look at the image below, in the line that starts with "Merge button: ...." - i.e the one that I've split to two lines - with the continuation line starting with "click after..."
After hitting TAB to open the action tree node, the continuation line is colored in grey - as if it's not a part of the task in question:

This is further verified if I mark the task as DONE (shift-rightCursor): The DONE marker is placed below my task line, not below my continuation line - as if the continuation line is on its own:

I am probably missing something obvious - any help will be most appreciated.
C-u C-x =does it show any special font at that location? If not, then the default is nothing. If it shows something, I'd be surprised -- so please let us know. If it's just the default font for regular text, then you'd need to change your default font for that particular major mode, which is a slightly different question than I think you're asking. - lawlistorg-modebuffer (like in your example):M-x describe-variable RET org-complex-heading-regexp RETyou'll get a printout for the regexp used for headings based on the keywords you've defined fororg-mode.org-modeuses that regexp for many functions, and that regexp essentially defines where a heading begins and where it ends. The only regexp I've ever seen for notes, is something that I wrote myself. TryM-x re-builder RETand paste the code of the complex variable to see it in action. - lawlistC-u C-x =is(what-cursor-position t). The same result can be achieved by typingM-x eval-expression RET (what-cursor-position t) RET- lawlist