mtth / locate.vim

Vim's missing search
28 stars 3 forks source link

There is no result list after search. #3

Closed zyqhi closed 8 years ago

zyqhi commented 9 years ago

After search, results are highlighted, but there is no result list. I am using macvim7.4

mtth commented 9 years ago

Does the list open when you run :lopen after a search? Do :lnext and :lprevious work after a search with multiple matches? Also, what other plugins are you using?

zyqhi commented 9 years ago

List is opened after I run :lopen, but it's not opened automatically after a search. But now, the matched strings are not highlighted. Here is a list of vim plugin in my .vimrc

Bundle 'gmarik/vundle'
Bundle 'tpope/vim-bundler'

Bundle 'thoughtbot/vim-rspec'
Bundle 'ack.vim'
Bundle 'comments.vim'
Bundle 'ctrlp.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/nerdcommenter'
Bundle 'rspec.vim'
Bundle 'honza/vim-snippets'
Bundle 'scrooloose/syntastic'
Bundle 'kchmck/vim-coffee-script'
Bundle 'flazz/vim-colorschemes'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-haml'
Bundle 'tpope/vim-rails'
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'pangloss/vim-javascript'
Bundle 'jelera/vim-javascript-syntax'
Bundle 'briancollins/vim-jst'
Bundle 'plasticboy/vim-markdown'
Bundle 'Lokaltog/vim-powerline'
Bundle 'vim-ruby/vim-ruby'
Bundle 'slim-template/vim-slim'
Bundle 'sudo.vim'
Bundle 'xml.vim'
Bundle 'ZenCoding.vim'

Bundle 'junegunn/goyo.vim'
Bundle 'junegunn/limelight.vim'

Bundle 'vim-scripts/Mark--Karkat'
" 导致CtabRedoIndent错误
" Bundle 'vim-scripts/Smart-Tabs'
Bundle 'vim-scripts/TagHighlight'
" Bundle 'vim-scripts/mru.vim'
Bundle 'yegappan/mru'

" Bundle 'drmingdrmer/xptemplate'
Bundle 'wesleyche/SrcExpl'
Bundle 'vim-scripts/taglist.vim'
Bundle 'majutsushi/tagbar'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-repeat'

Bundle 'ervandew/supertab'
Bundle 'Valloric/YouCompleteMe'
Bundle 'SirVer/ultisnips'

Bundle 'Lokaltog/vim-easymotion'
Bundle 'mtth/locate.vim'
Bundle 'godlygeek/tabular'
Bundle 'jiangmiao/auto-pairs'
Bundle 'reedes/vim-colors-pencil'
Bundle 'bling/vim-airline'
mtth commented 9 years ago

Thanks. My suspicion is that one of the other plugins sets up a conflicting autocmd. Could you try disabling them all to confirm this? If that fixes it and it's not too tedious, it'd be most helpful to know which one creates the issue.

mtth commented 8 years ago

Closing since this is likely a duplicate of https://github.com/mtth/locate.vim/issues/2 (syntastic is among the plugins above).