tpope / vim-pathogen

pathogen.vim: manage your runtimepath

Home Page:http://www.vim.org/scripts/script.php?script_id=2332

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installed plugin with pathogen, but cannot start

wallyreport opened this issue · comments

I am okay with standard vim, but I usually avoid plugins. One reason is that there are several different plugin managers, and they all tend to be quirky.

I am trying to use pathogen.

If I enter :Helptags then :help vimwiki - I get the docs. But when I pub the cursor on a word, and hit enter, nothing happens.

I am using Parrot Linux - based on Debian AMD-64

#uname -a
Linux fir.nuclix 5.3.0-3parrot3-amd64 #1 SMP Parrot 5.3.9-3parrot3 (2019-11-23) x86_64 GNU/Linux

My .vimrc

syntax on
set tabstop=4
filetype on
set nu
set ruler
set mouse=a
set list
set guifont=Monospace\ 18
set number
set wrap
set linebreak
set nolist " list disables linebreak
set textwidth=0
set wrapmargin=0
set nocompatible
execute pathogen#infect()
filetype plugin indent on
syntax on

~/.vim/

#tree
.
├── autoload
│   └── pathogen.vim
└── bundle
    ├── tags
    ├── vimwiki
    │   ├── autoload
    │   │   └── vimwiki
    │   │       ├── base.vim
    │   │       ├── customwiki2html.sh
    │   │       ├── default.tpl
    │   │       ├── diary.vim
    │   │       ├── html.vim
    │   │       ├── lst.vim
    │   │       ├── markdown_base.vim
    │   │       ├── path.vim
    │   │       ├── style.css
    │   │       ├── tags.vim
    │   │       ├── tbl.vim
    │   │       ├── u.vim
    │   │       └── vars.vim
    │   ├── CONTRIBUTING.md
    │   ├── doc
    │   │   ├── entries.png
    │   │   ├── lists.png
    │   │   ├── screenshot_1.png
    │   │   ├── screenshot_2.png
    │   │   ├── tags
    │   │   ├── todos.png
    │   │   ├── vimwiki.txt
    │   │   └── wiki.png
    │   ├── ftplugin
    │   │   └── vimwiki.vim
    │   ├── LICENSE.md
    │   ├── plugin
    │   │   └── vimwiki.vim
    │   ├── README-cn.md
    │   ├── README.md
    │   ├── syntax
    │   │   ├── vimwiki_default.vim
    │   │   ├── vimwiki_markdown_custom.vim
    │   │   ├── vimwiki_markdown.vim
    │   │   ├── vimwiki_media.vim
    │   │   └── vimwiki.vim
    │   └── tags
    └── vimwiki-vimwiki-v2.4.1-5-g64c9f3d.zip

I've never used vimwiki so I can't really help with this. One thing you should check is whether plugin/vimwiki.vim appears in :scriptnames. If it does, then Pathogen did its job.