No matching autocommands
See original GitHub issuevim version: 8.1 Plugin management tool: Vundle
~/.vimrc
config:
For installation, so far I have tried:
Plugin 'iamcco/markdown-preview.nvim'
Plugin 'iamcco/markdown-preview.nvim', { 'do': ':call mkdp#util#install()', 'for': 'markdown', 'on': 'MarkdownPreview' }
Plugin 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
Start the preview
:MarkdownPreview
I got
No matching autocommands
Is it because it does not support Vundle?
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (3 by maintainers)
Top Results From Across the Web
Error in Vim with autocmd: No matching autocommands
No matching autocommands. The autocmd I use is: autocmd BufWritePost *.c,*.cpp,*.cxx,*.cc call g:ClangUpdateQuickFix().
Read more >persistant error "E676: No matching autocommands for ...
Error message ( :h E676 ) indicates that your buffer is supposed to be written by user-supplied auto-commands only ( setl bt=acwrite )....
Read more >[vim/vim] Active terminal causes :wall to fail with E676
E676: No matching autocommands for acwrite buffer flashes briefly. What I expect. no confusing error message. Note that if the terminal is no...
Read more >Job still running : r/neovim - Reddit
Sometimes when doing :wqa I get the error E948: Job still running E676: No matching autocommands for acwrite buffer but there are no ......
Read more >Vim_diff - Neovim docs
default-autocmds Default autocommands exist in the following groups. Use ":autocmd! ... Commands: :doautocmd does not warn about "No matching autocommands".
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
hi @frank777777777
I’m using pathogen and only run
:call mkdp#util#install()
in to vim, this command download support for your SO, later restard and openvim README.md
and finally:MarkdownPreview
and works.You can follow same steps, regards!
I have met the same question with same environment(vim 8.1 vundle). I solved this now by use
yarn
. Firstly, type:mess
in vim, if you get some errors about node.js , then you probably not install the plugin correctly. You can install yarn for your os andcd ~/.vim/bundle/markdown-preview.nvim/app && yarn
.