bastibe / annotate.el

Annotate.el
Other
384 stars 20 forks source link

can annotation be wrapped? #153

Closed emacs-newer closed 1 year ago

emacs-newer commented 1 year ago

my annotation for a highlight annotation is like this:

1. annotation one;2. annotation two;3. annotation three.

is it possible to wrap after each ";"?

1. annotation one;
2. annotation two;
3. annotation three.
........
cage2 commented 1 year ago

Hi!

You can add a newline in an annotation using the command 'C-q' followed by 'C-j'.

So, for example:

  1. annotation line one; 'C-Q C-j"

will write the rest of the annotation's text in a new line.

Hope this helps. :)

Bye! C.

emacs-newer commented 1 year ago

works and thanks