2017-03-18 24 views
0

これは永遠と同じように、私はvimでこの取り消し線を無効にする方法を知りません。vimrcでvimの取り消し線を無効にする方法

現在、私はubuntuでgvimを使用しています。おそらく私のvimrc設定に何か問題があります。

試したグーグルはすでに何ヶ月も解決策を見つけることができませんでした。

enter image description here

を助けてくださいことは以下、遊んgruvboxと、この行を追加するためのカラースキームを変更した後、突然

let html_no_rendering=1 

すべてが消え取り消し線私のvimrc

set nocompatible    " be iMproved, required 
filetype off     " required 


" set the runtime path to include Vundle and initialize 
set rtp+=~/.vim/bundle/Vundle.vim 
call vundle#begin() 
" alternatively, pass a path where Vundle should install plugins 
"call vundle#begin('~/some/path/here') 

" let Vundle manage Vundle, required 
Plugin 'VundleVim/Vundle.vim' 
Plugin 'scrooloose/nerdtree' 
Plugin 'ctrlpvim/ctrlp.vim' 
Plugin 'tpope/vim-vinegar' 
Plugin 'jistr/vim-nerdtree-tabs' 
Plugin 'scrooloose/syntastic' 
Plugin 'flazz/vim-colorschemes' 
Plugin 'chrisbra/Recover.vim' 
Plugin 'MarcWeber/vim-addon-mw-utils' 
Plugin 'tomtom/tlib_vim' 
Plugin 'garbas/vim-snipmate' 
Plugin 'honza/vim-snippets' 
Plugin 'posva/vim-vue' 


call vundle#end()   " required 
filetype plugin indent on " required 
" To ignore plugin indent changes, instead use: 
"filetype plugin on 
" 
" Brief help 
" :PluginList  - lists configured plugins 
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate 
" :PluginSearch foo - searches for foo; append `!` to refresh local cache 
" :PluginClean  - confirms removal of unused plugins; append `!` to auto-approve removal 
" 
" see :h vundle for more details or wiki for FAQ 
" Put your non-Plugin stuff after this line 

"let base16colorspace=256 " Access colors present in 256 colorspace 
"set t_Co=256 " 256 color mode 
"set background=dark 
"colorscheme base16-ocean 

let g:ctrlp_max_files=0 
let g:ctrlp_max_depth=40 

" Store temporary files in a central spot 
let vimtmp = $HOME . '/.tmp/' . getpid() 
silent! call mkdir(vimtmp, "p", 0700) 
let &backupdir=vimtmp 
let &directory=vimtmp 


syntax on 
syntax enable 
"colorscheme Monokai 
"colorscheme zenburn 
"colorscheme gruvbox 
"colorscheme lucius 
colorscheme Monokai 
"colorscheme getafe 
"colorscheme CandyPaper 
"colorscheme tomorrow-night-eighties 
map <C-n> :NERDTreeToggle<CR> 
let NERDTreeShowHidden=1 
set guitablabel=%N:%M%t " Show tab numbers 
set hlsearch 
"set incsearch 
set relativenumber 
set laststatus=2 
set linespace=15 
set clipboard=unnamedplus 
set guifont=Monospace\ 12 

filetype plugin indent on 
" show existing tab with 4 spaces width 
set tabstop=4 
" when indenting with '>', use 4 spaces width 
set shiftwidth=4 
" On pressing tab, insert 4 spaces 
set expandtab 

map <C-F12> :tabe ~/.vimrc<CR> 
map <C-F11> :tab sp<CR>:e ~/.vim/snippets/php.snippets<CR> 
map <C-F10> :tab sp<CR>:e sudo /etc/hosts<CR> 
map <C-F9> :tab sp<CR>:e ~/Code/AdminLTE-2.3.0/pages/UI/icons.html<CR> 
+0

あなたの '.vimrc'の内容を見せてくれれば助けになるでしょう。 – L3viathan

+0

配色を無効にするか、別のフォントに切り替えると役立ちますか? –

+0

私は多くのcolorshchemeを試みた...それらのすべてはまだ同じを示す。取り消し線 –

答えて

0

です。しかし、私が選択しなければならない色合いは、私が欲しいものではありません。とにかく誰かが助言できるなら。コメントしてください。

set nocompatible    " be iMproved, required 
filetype off     " required 


" set the runtime path to include Vundle and initialize 
set rtp+=~/.vim/bundle/Vundle.vim 
call vundle#begin() 
" alternatively, pass a path where Vundle should install plugins 
"call vundle#begin('~/some/path/here') 

" let Vundle manage Vundle, required 
Plugin 'VundleVim/Vundle.vim' 
Plugin 'scrooloose/nerdtree' 
Plugin 'ctrlpvim/ctrlp.vim' 
Plugin 'tpope/vim-vinegar' 
Plugin 'jistr/vim-nerdtree-tabs' 
Plugin 'scrooloose/syntastic' 
Plugin 'flazz/vim-colorschemes' 
Plugin 'chrisbra/Recover.vim' 
Plugin 'MarcWeber/vim-addon-mw-utils' 
Plugin 'tomtom/tlib_vim' 
Plugin 'garbas/vim-snipmate' 
Plugin 'honza/vim-snippets' 
Plugin 'posva/vim-vue' 


call vundle#end()   " required 
filetype plugin indent on " required 
" To ignore plugin indent changes, instead use: 
"filetype plugin on 
" 
" Brief help 
" :PluginList  - lists configured plugins 
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate 
" :PluginSearch foo - searches for foo; append `!` to refresh local cache 
" :PluginClean  - confirms removal of unused plugins; append `!` to auto-approve removal 
" 
" see :h vundle for more details or wiki for FAQ 
" Put your non-Plugin stuff after this line 

"let base16colorspace=256 " Access colors present in 256 colorspace 
"set t_Co=256 " 256 color mode 
"set background=dark 
"colorscheme base16-ocean 

let g:ctrlp_max_files=0 
let g:ctrlp_max_depth=40 

" Store temporary files in a central spot 
let vimtmp = $HOME . '/.tmp/' . getpid() 
silent! call mkdir(vimtmp, "p", 0700) 
let &backupdir=vimtmp 
let &directory=vimtmp 


syntax on 
syntax enable 
"colorscheme Monokai 
"colorscheme zenburn 
"colorscheme gruvbox 
"colorscheme lucius 
colorscheme gruvbox 
"colorscheme getafe 
"colorscheme CandyPaper 
"colorscheme tomorrow-night-eighties 
map <C-n> :NERDTreeToggle<CR> 
let NERDTreeShowHidden=1 
set guitablabel=%N:%M%t " Show tab numbers 
set hlsearch 
"set incsearch 
set relativenumber 
set laststatus=2 
set linespace=15 
set clipboard=unnamedplus 
set guifont=Monospace\ 12 

filetype plugin indent on 
" show existing tab with 4 spaces width 
set tabstop=4 
" when indenting with '>', use 4 spaces width 
set shiftwidth=4 
" On pressing tab, insert 4 spaces 
set expandtab 
let html_no_rendering=1 
map <C-F12> :tabe ~/.vimrc<CR> 
map <C-F11> :tab sp<CR>:e ~/.vim/snippets/php.snippets<CR> 
map <C-F10> :tab sp<CR>:e sudo /etc/hosts<CR> 
map <C-F9> :tab sp<CR>:e ~/Code/AdminLTE-2.3.0/pages/UI/icons.html<CR>