Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't access dein documentation #8

Closed
pablox-cl opened this issue Feb 20, 2016 · 5 comments
Closed

can't access dein documentation #8

pablox-cl opened this issue Feb 20, 2016 · 5 comments

Comments

@pablox-cl
Copy link

I followed the instruccions on how to install dein:

let s:dein_path = expand('$CACHE/dein/repos/github.com/Shougo/dein.vim')
execute 'set runtimepath^=' . s:dein_path

call dein#begin(expand('$CACHE/dein'))

if dein#load_cache()

  call dein#add('Shougo/dein.vim',      {'rtp': ''})

  call dein#save_cache()
endif

After opening neovim, :h dein, says E149: Sorry, no help for dein. but it has help for the other plugins.

@wsdjeg
Copy link
Contributor

wsdjeg commented Feb 21, 2016

git clone https://github.com/Shougo/dein.vim.git ~/.cache/dein/dein.vim
change let s:dein_path = expand('$CACHE/dein/repos/github.com/Shougo/dein.vim')
to let s:dein_path = expand('$CACHE/dein/dein.vim')

@Shougo Shougo closed this as completed in 6e2e592 Feb 21, 2016
@Shougo
Copy link
Owner

Shougo commented Feb 21, 2016

@pablox-cl Please use call dein#add('Shougo/dein.vim') instead.
Fixed the documentation.

@prabirshrestha
Copy link

@Shougo Here is my full vimrc just to bootstrap dein.vim and I still can't seem to be able to load the doc.

set nocompatible

let g:settings = {}
let g:settings.cache_dir = expand('~/.config/nvim')
let g:settings.plugins_dir = g:settings.cache_dir . '/dein'
let g:settings.plugin_manager_dir = g:settings.plugins_dir . '/repos/github.com/Shougo/dein.vim'

if !filereadable(g:settings.plugin_manager_dir . '/README.md')
  if executable('git')
    echo "Installing dein.vim ..."
    echo ""
    execute printf('!git clone %s://github.com/Shougo/dein.vim --depth 1',
        \ (exists('$http_proxy') ? 'https' : 'git'))
        \ expand(g:settings.plugin_manager_dir)
  else
      echohl WarningMsg | echom "You need to install git!" | echohl None
  endif
endif

if has('vim_starting')
  exec 'set runtimepath^='.g:settings.plugin_manager_dir
endif

call dein#begin(g:settings.plugins_dir)
  if dein#load_cache()
    call dein#add('Shougo/dein.vim')
    call dein#add('Shougo/neocomplete.vim')
    call dein#save_cache()
  endif
call dein#end()

if dein#check_install()
  call dein#install()
endif

filetype plugin indent on

image

@pablox-cl
Copy link
Author

@wsdjeg what's the difference?

@Shougo I tried that before, I should've state it sorry. It doesn't work :(

Shougo added a commit that referenced this issue Feb 22, 2016
@Shougo
Copy link
Owner

Shougo commented Feb 22, 2016

Fixed the problem.
Please update dein.vim.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants