Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Vim: 開いているタブ内で一括単語検索

$
0
0

開いているタブ内での単語検索

基本的な検索の仕方はファイル内検索と変わらない。違うタブに写ったときは*からnに変わるだけ。ノーマルモードから/wordで単語検索。*で次の検索候補へ。タブを変えてnもしくはNでそのタブ内のファイルの検索候補へ。vimrcに:set hlsearchを入れておくと検索時にヒットした候補が全てハイライトされるので意外と便利。

" ctrl+c to toggle highlight.
let hlstate=0
nnoremap <c-c> :if (hlstate%2 == 0) \| nohlsearch \| else \| set hlsearch \| endif \| let hlstate=hlstate+1<cr>

ctr + cで作業中でもハイライト機能をon/offにすることも可能。

参考にしたリンク


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>