Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/26.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Linux e> (缓冲器,行号)并在显示缓冲器时使Vim显示符号)。块使用三个命令(1)将:scriptnames(:h:scriptnames)的输出捕获到一个文件,(2)使用perl只保留文件名,(3)检查任何源文件是否包含符号定义。这对我来说是一种情况:当我更_Linux_Vim - Fatal编程技术网

Linux e> (缓冲器,行号)并在显示缓冲器时使Vim显示符号)。块使用三个命令(1)将:scriptnames(:h:scriptnames)的输出捕获到一个文件,(2)使用perl只保留文件名,(3)检查任何源文件是否包含符号定义。这对我来说是一种情况:当我更

Linux e> (缓冲器,行号)并在显示缓冲器时使Vim显示符号)。块使用三个命令(1)将:scriptnames(:h:scriptnames)的输出捕获到一个文件,(2)使用perl只保留文件名,(3)检查任何源文件是否包含符号定义。这对我来说是一种情况:当我更,linux,vim,Linux,Vim,e> (缓冲器,行号)并在显示缓冲器时使Vim显示符号)。块使用三个命令(1)将:scriptnames(:h:scriptnames)的输出捕获到一个文件,(2)使用perl只保留文件名,(3)检查任何源文件是否包含符号定义。这对我来说是一种情况:当我更改C文件并保存它时,它会显示出来。我做了:帮助签名,我看到了一些看起来很熟悉的东西(当我解开更改并再次保存时,它就消失了)。然后我尝试了:sign list,发现了问题:前几天我在玩Syntastic,似乎就是这个问题。编辑:是的,就是这样。谢


e> (缓冲器,行号)并在显示缓冲器时使Vim显示符号)。块使用三个命令(1)将
:scriptnames
:h:scriptnames
)的输出捕获到一个文件,(2)使用perl只保留文件名,(3)检查任何源文件是否包含
符号定义
。这对我来说是一种情况:当我更改C文件并保存它时,它会显示出来。我做了
:帮助签名
,我看到了一些看起来很熟悉的东西(当我解开更改并再次保存时,它就消失了)。然后我尝试了
:sign list
,发现了问题:前几天我在玩Syntastic,似乎就是这个问题。编辑:是的,就是这样。谢谢你给我指向正确方向的指针!
let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0
argglobal
setlocal keymap=
setlocal noarabic
setlocal autoindent
setlocal nobinary
setlocal bufhidden=
setlocal buflisted
setlocal buftype=
setlocal cindent
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
setlocal cinoptions=
setlocal cinwords=if,else,while,do,for,switch
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
setlocal commentstring=/*%s*/
setlocal complete=.,w,b,u,t,i
setlocal completefunc=
setlocal nocopyindent
setlocal nocursorcolumn
setlocal nocursorline
setlocal define=
setlocal dictionary=
setlocal diff
setlocal equalprg=
setlocal errorformat=
setlocal expandtab
if &filetype != 'cpp'
setlocal filetype=cpp
endif
setlocal foldcolumn=2
setlocal foldenable
setlocal foldexpr=0
setlocal foldignore=#
setlocal foldlevel=0
setlocal foldmarker={{{,}}}
setlocal foldmethod=diff
setlocal foldminlines=1
setlocal foldnestmax=20
setlocal foldtext=foldtext()
setlocal formatexpr=
setlocal formatoptions=tcq
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
setlocal grepprg=
setlocal iminsert=0
setlocal imsearch=0
setlocal include=
setlocal includeexpr=
setlocal indentexpr=
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
setlocal noinfercase
setlocal iskeyword=@,48-57,_,192-255
setlocal keywordprg=
setlocal nolinebreak
setlocal nolisp
setlocal nolist
setlocal makeprg=
setlocal matchpairs=(:),{:},[:]
setlocal nomodeline
setlocal modifiable
setlocal nrformats=octal,hex
setlocal nonumber
setlocal numberwidth=4
setlocal omnifunc=
setlocal path=
setlocal nopreserveindent
setlocal nopreviewwindow
setlocal quoteescape=\\
setlocal noreadonly
setlocal norightleft
setlocal rightleftcmd=search
setlocal scrollbind
setlocal shiftwidth=4
setlocal noshortname
setlocal smartindent
setlocal softtabstop=0
setlocal nospell
setlocal spellcapcheck=[.?!]\\_[\\])'\"\    \ ]\\+
setlocal spellfile=
setlocal spelllang=en
setlocal statusline=
setlocal suffixesadd=
setlocal swapfile
setlocal synmaxcol=3000
if &syntax != 'cpp'
setlocal syntax=cpp
endif
setlocal tabstop=4
setlocal tags=
setlocal textwidth=0
setlocal thesaurus=
setlocal nowinfixheight
setlocal nowinfixwidth
setlocal nowrap
setlocal wrapmargin=0
let s:l = 75 - ((20 * winheight(0) + 29) / 59)
if s:l < 1 | let s:l = 1 | endif
exe s:l
normal! zt
75
normal! 0
let &so = s:so_save | let &siso = s:siso_save
doautoall SessionLoadPost
" vim: set ft=vim 
sign unplace *
vim /path/to/file/that/causes/problem -c 'redir! >/tmp/scriptnames' -c scriptnames -c 'redir END' -c 'qa!'
perl -p -i -e 's/^\s*$//g;s/^\s*\d+:\s//g' /tmp/scriptnames
grep -F -w 'sign define' `cat /tmp/scriptnames`
:verbose set foldcolumn?
set signcolumn=no