You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are no installation instructions for Pathogen so I cloned it to my ~/.vim/bundle directory and added let g:context_enabled = 1 to my ~/.vimrc but it doesn't seem to work.
Can anyone help me use this plugin with pathogen?
Using vim 8.2.5147 on Ubuntu 20
The text was updated successfully, but these errors were encountered:
Do :ContextToggle and see if that works or reports errors. That will clarify whether the plugin is failing to load or just failing to display.
g:context_enabled should be unnecessary because context defaults to enabled. Otherwise, cloning it to ~/.vim/bundle is how I have it installed with pathogen, but I also have these settings:
" I don't like extra mappings
let g:context_add_mappings = 0
" Disable by default and use mapping to access.
let g:context_enabled = 0
nnoremap <silent> <Leader>ic :<C-u>ContextToggle<CR>:echo g:context.enabled ? "with context" : "no context"<CR>
There are no installation instructions for Pathogen so I cloned it to my
~/.vim/bundle
directory and addedlet g:context_enabled = 1
to my~/.vimrc
but it doesn't seem to work.Can anyone help me use this plugin with pathogen?
Using vim 8.2.5147 on Ubuntu 20
The text was updated successfully, but these errors were encountered: