Let you use vim to edit markdown files quickly.
curl -o \
$HOME/.vim/fast-markdown.vim \
--create-dirs \
https://raw.githubusercontent.com/lxp731/fast-markdown/refs/heads/main/fast-markdown.vim
echo "source $HOME/.vim/fast-markdown.vim" >> $HOME/.vimrc
,b
- insert a bold text.,i
- insert a italic text.,s
- insert a strikethrough text.,d
- insert a code text.,c
- insert a code block.,a
- insert a link.,p
- insert a image.,f
- locate quickly.,(num)
- insert a heading of level (num).,t(num)
- Insert a table with (num) columns.,l(num)
- Insert a table with one row and (num) columns.
-
In some key mappings, it will insert a special character, such as
<++>
. It is to help you locate quickly. Do not remove it. -
,l(num)
is the complement of,t(num)
, Use only when you need to add rows to the table.