gvim と ctags を使用して C++ コードをナビゲートしています。ctags ファイルのサイズは 3.5 GB です。ctrl-] はかなり速く動作しますが、g+ctrl-] は 5 秒近くかかります。速度を改善するための提案はありますか?
私の .gvimrc:
set gcr=n-c-v:blinkoff0 " it switches off cursor blinks
set lines=52 columns=120 " Sets the geometry of gui window.
colorscheme default " desert load the color scheme of choice
set nocompatible " This must be first, because it changes other options as a side effect.
set ic
set backspace=indent,eol,start " allow backspacing over everything in insert mode
set history=10000 " keep 100 lines of command line history
set showcmd " display incomplete commands
set incsearch " do incremental searching
set et
set paste
set ruler