On Feb 18, Mac Martine wrote:
If you scroll down slightly in to the image showing an example of Vim notes, it 
has the round bullet points in fro of the list items: 
https://github.com/xolox/vim-notes

How do you create those?

In the example you gave, it was written in Markdown. If you're using Markdown, it can either be written with a "*" or a "-" character. You'll only see the bullet after it's been rendered as HTML, though, as in on that Github page.

If you want to type that literal character into a file in Vim, you could define an abbreviation like the one below:

iabbrev *** •

Now every time you type three asterisks in insert mode, Vim will change it to that bullet. You can change the asterisks to whatever you want.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to