转载须知:个人博客随意,记得署名.商用及大中型网站联系我先sodya#qq.com,否则小心"上榜"


加精博文?

问题:方便地生成md链接

我的github pages有个pages目录,下面有些文章,随着文章的更新,这个目录下的index.md里面也要相应地更新文章列表,我就想方便点能自己生成


nnoremap <leader>j : call my_vim_plugin#Make_pages_links()<cr>

function! my_vim_plugin#Make_pages_links() abort 
        let file_lists=systemlist('ls *md')
        call map(file_lists,'"[".v:val."]"."(".v:val.")"')       
        call setline('$',file_lists)
endfunction


There are no comments on this post.