How to make Vim continue bullet points?
vim
Solution
Try
setlocal formatoptions=ctnqro
setlocal comments+=n:*,n:#
It works that way in vimwiki.
Problem
When I use Mediawiki-syntax first-level bullet points, pressing enter key shows a bullet point for the next line as well: ``` * <CR> * ``` But when I have the second-level bullet points, it just starts a new blank line ``` ** <CR> (blank line) ``` What option/expression do I have to change/program to make it put `**` in the second line? I have `set autoindent` in my vimrc, not sure if that is the one that does the repeating of `*` with the enter key.