vim-markdown-toc icon indicating copy to clipboard operation
vim-markdown-toc copied to clipboard

Q: Is vim-markdown-toc abandoned, dead? (A: Yes)

Open WaterSibilantFalling opened this issue 4 years ago • 5 comments

Last PR over 18 months ago.

Last closed issue over a year ago.

No responses to any Issues.

vim-markdown-toc is not working at all for me (installled, but vim will not acknowledge that it is there), but no point in raising an issue.

WaterSibilantFalling avatar Oct 03 '21 11:10 WaterSibilantFalling

It is working for me, not to say that it is not abandoned/unmaintained. I use nvim with vim plug, added Plug 'mzlogin/vim-markdown-toc' to init.vim and then did :PlugInstall.

mbpowers avatar Jan 09 '22 15:01 mbpowers

Same for me. The commands can't be found in nvim.

Update: In my case, a change in the Plug-Configuration in my ~/.config/nvim worked and solved the problem (I am using nvim):

call plug#begin('~/.config/nvim/plugged')
    Plug 'mzlogin/vim-markdown-toc'
call plug#end()

The important part here was to specify the file path in the begin function. After reloading the config, all plugins have to be installed again. However, afterwards the commands can be found and run well.

reckel-jm avatar Jan 31 '22 11:01 reckel-jm

Same for me. The commands can't be found in nvim.

Update: In my case, a change in the Plug-Configuration in my ~/.config/nvim worked and solved the problem (I am using nvim):

call plug#begin('~/.config/nvim/plugged')
    Plug 'mzlogin/vim-markdown-toc'
call plug#end()

The important part here was to specify the file path in the begin function. After reloading the config, all plugins have to be installed again. However, afterwards the commands can be found and run well.

Yeah, what you do is how to install a vim plugin with vim-plug, documented in https://github.com/junegunn/vim-plug#usage.

mzlogin avatar Feb 02 '22 11:02 mzlogin

@WaterSibilantFalling I'm sorry for my late reply. Could you provide more details? Like how you manage your vim plugins, what's in your vimrc, etc.

mzlogin avatar Feb 02 '22 11:02 mzlogin

vim-markdown-toc is not working at all for me (installled, but vim will not acknowledge that it is there)

Check your file has actually extension .md or .markdown extension (#86).

dariober avatar Mar 08 '24 10:03 dariober