web-dev-qa-db-ja.com

Matchitが機能しない

Macvim7.3スナップショット57を使用しています。どのファイルでもmatchitを機能させることができないようです。

開始タグで%を押します。終了タグに移動しません...

私のvimrcファイル:

" Pathogen settings
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()

set nocompatible

set number
set ruler
set cursorline
syntax on

" Disable all blinking
set guicursor+=a:blinkon0

" Whitespace stuff
set nowrap
set tabstop=2
set shiftwidth=2
set expandtab
set cindent
set smartindent
set autoindent
set list listchars=tab:\ \ ,trail:·

" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase

" Status bar
set laststatus=2

" Start without the toolbar
set guioptions-=T

" Default gui color scheme
" "color default
" color molokai
color railscasts+

" Command-/ to toggle comments
map <D-/> :TComment<CR>j

" Remember last location in file
if has("autocmd")
  au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
    \| exe "normal g'\"" | endif
endif

" Thorfile, Rakefile and Gemfile are Ruby
au BufRead,BufNewFile {Gemfile,Rakefile,Thorfile,config.ru} set ft=Ruby

" Open split buffers below instead of above current buffer
set splitbelow

" Session options
let g:session_autoload = 1
let g:session_autosave = 1

" Buffer navigation
map <C-K> <C-W><C-K>
map <C-J> <C-W><C-W>
map <C-H> <C-W><C-H>
map <C-L> <C-W><C-L>

" Rails navigation options
nmap <leader>rc :Rcontroller 
nmap <leader>rv :Rview 
nmap <leader>rm :Rmodel 

" Tab completion
" Also needed for better Rails navigation auto-completion
set wildmode=list:longest,list:full

" Open up side panel left (NERDTree) and right(Tagbar)
" nmap <leader>\ :NERDTreeToggle<CR> :TagbarToggle<CR>
nmap <leader>\ :call ToggleNERDTreeAndTagbar()<CR>

" Allow single click for NERDTree
let NERDTreeMouseMode = 3
let g:NERDTreeWinSize = 30
" autocmd VimEnter * NERDTree

" Tagbar options
let tagbar_singleclick = 1
let g:tagbar_sort = 0
let g:tagbar_width = 30
" autocmd VimEnter * nested TagbarOpen

" The Janus plugin sets this to noequalalways for the Zoominfo plugin
" However, we want to set this to equalalways instead, since we want to
" have equal window height when a new window is opened. i.e. via ctrl+w+s
set equalalways

" Matchit already installed in newer versions of vim.
" Don't need to add this onto pathogen bundle folder. We only need
" to configure it.
" Configure matchit so that it goes from opening tag to closing tag
au FileType html,eruby,rb,css,js,xml runtime! macros/matchit.vim

" Set backup and swp dir. Don't forget to clear tmp dir out once in a while
set backupdir=~/.vim/tmp/backup
set directory=~/.vim/tmp/swp

" Detect if a tab was closed, and ensure that height of main window fills the screen (100% height)
au TabEnter * let &lines = 100

" <leader>\ to open or close NERDTree and Tagbar, under the following conditions:
" 1) Only close both if NERDTree and Tagbar are both opened
" 2) Open both if NERDTree and Tagbar are closed OR if one is already opened
function! ToggleNERDTreeAndTagbar()
  let w:jumpbacktohere = 1

  " Detect which plugins are open
  if exists('t:NERDTreeBufName')
      let nerdtree_open = bufwinnr(t:NERDTreeBufName) != -1
  else
      let nerdtree_open = 0
  endif
  let tagbar_open = bufwinnr('__Tagbar__') != -1

  " Perform the appropriate action
  if nerdtree_open && tagbar_open
      NERDTreeClose
      TagbarClose
  elseif nerdtree_open
      TagbarOpen
  elseif tagbar_open
      NERDTree
  else
      NERDTree
      TagbarOpen
  endif

  " Jump back to the original window
  for window in range(1, winnr('$'))
    execute window . 'wincmd w'
    if exists('w:jumpbacktohere')
      unlet w:jumpbacktohere
      break
    endif
  endfor
endfunction
27

Vimにはmatchitプラグインが付属しているので、必要なのはそれをアクティブ化することだけです。

vim ~/.vimrc

次に、以下を.vimrcに追加します。

set nocompatible
filetype plugin on
runtime macros/matchit.vim
24
Kingsley Ijomah

matchitプラグインのページ は次のように述べています。

次のような行があることを確認してください

:filetype plugin on

vimrcファイル内。これにより、ファイルタイププラグインが有効になり、その多くはmatchit.vim使用するマッチングペア。

20
speedbacon

この行

runtime macros/matchit.vim

これはmatchitをアクティブ化する標準的な方法であり、すべてのマシンで機能します。

入力した後、matchitは機能しますか

:runtime macros/matchit.vim

通常モードでは?

19
romainl

いくつかのvimプラグインを7.3の最新バージョンに更新した後、同じ問題が発生し始めました。

しかし、私が走るとき

:MatchDebug

それは私のために問題を修正します。

5
dkinzer

参考:vim8ではruntime macros/matchit.vimpackadd! matchitになります。 This サイトは私を大いに助けてくれました。

3
Jacob Degeling

コメント付きの中括弧がある場合、matchitがC++/Cで正しい一致する中括弧を見つけるのに問題がありました。 このフォーラム投稿 によって書かれた この男 から取られた次の手順は、私のためにそれを解決し、全体がどのように機能するかについてもほとんど説明しました:

  1. フォルダー〜/ .vim/pluginがまだない場合は、作成します。

    mkdir ~/.vim/plugin 
    
  2. 〜/ .vim/plugin /matchit.vimという名前のファイルを作成します。

    vi ~/.vim/plugin/matchit.vim 
    

    および次の内容:

    runtime macros/matchit.vim 
    
  3. ディレクトリ〜/ .vim/docがまだない場合は、作成します。

    mkdir ~/.vim/doc
    
  4. /usr/share/vim/vim73/macros/matchit.txtを〜/ .vim/doc /にコピーします。

    cp /usr/share/vim/vim73/macros/matchit.txt ~/.vim/doc/
    
  5. Viを開く

    vi
    

    その中で以下を実行します。

    :helptags ~/.vim/doc 
    
  6. 〜/ .vimrcに次のいずれかが含まれていることを確認してください。

    source $VIMRUNTIME/vimrc_example.vim 
    

    または

    runtime vimrc_example.vim 
    

    または

    filetype plugin on 
    

    または

    filetype plugin indent on 
    
  7. 次の自動コマンドをvimrcに追加します。

    " make matchit work on C-like filetypes 
    " c and cpp are already handled by their ftplugin 
    au Filetype css,javascript 
            \ let b:match_words = &matchpairs 
    
  8. Vimを再起動します。

2
George

私も同様の問題を抱えています。私はもう試した runtime macros/matchit.vim VIMが提供するスクリプトを使用しましたが、機能しませんでした。したがって、このスクリプトをバージョン1.13.2で http://www.vim.org/scripts/script.php?script_id=39 からダウンロードし、〜/ vimfilesに解凍すると、機能します。

0