您尚未登录。

#1 2013-10-06 17:05:18

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

[已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

32ef8ec874035751caf013512dad7f2b5f152f.png
gvim 和 vim-runtime 都已经更新到最新

打开任意一个 perl 代码(包括新建的)都会有这个错误
按回车打开后貌似一切正常,但是保存时会有 "File exist" 错误,要用 :w! 才能保存

解决方法:
.vimrc 里加上 set shell=bash (因为我用的是 bash 兼容的 fish)

最近编辑记录 cjxgm (2013-10-06 23:17:32)

离线

#2 2013-10-06 17:17:03

Invincible
会员
注册时间: 2013-08-13
帖子: 49

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

发一下你的配置文件,还有问下安装的是gomne桌面环境还是?


做自己平生想做的事,哪怕一秒后你的世界就会GameOver,那么你也将不留遗憾!

离线

#3 2013-10-06 17:20:47

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

Invincible 说:

发一下你的配置文件,还有问下安装的是gomne桌面环境还是?

set nocp
syntax enable
filetype plugin on
set background=light

" too slow when autocompleting!
"set path+=/usr/include/**
"set path+=/usr/local/include/**

set number
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set noexpandtab

set incsearch
set mouse=a

set textwidth=0
set colorcolumn=76
set scrolloff=4

set nowrap
set sidescrolloff=8
set sidescroll=1

set foldmethod=indent
"set textwidth=70

" fold all
map <F2> zM
" unfold all
map <F3> zR
map <F4> :call DebugWithoutMess()<CR>
map <F5> :wa<CR>:make test<CR>
map <F6> :wa<CR>
" toggle fold recursively
map <F7> zA
" toggle fold
map <F8> za
map <F9> :wa<CR>:!./configure<CR>
map <F12> mtgg=G`t

" remap vimwiki
nmap <C-S-SPACE> VimwikiToggleListItem


func! DebugWithoutMess()
	wa
	new
	make test
	q
endf

nmap XXXX ZQ
nmap <C-f> <C-w>f
nmap <C-d> gD


"set t_AF=[38;5;%dm
"set t_AB=[48;5;%dm
hi Folded ctermbg=black ctermfg=darkgray
hi FoldedLineNr ctermbg=blue ctermfg=yellow


" extra highlighting and keybinding for C family language
func! ExtraC()
	syn match cFunction "\zs\w\+\ze\s*("
	hi def link cFunction Function

	syn match cppUserType "\zs[a-z]\?[A-Z]\w*\ze\(\s\+\|\s*[*&]\+\s*\)[a-zA-Z0-9_:.]\+\s*[(){\[\],;=]"
	syn match cppUserType "\zs[a-z]\w*_t\ze\(\s\+\|\s*[*&]\+\s*\)[a-zA-Z0-9_:.]\+\s*[(){\[\],;=]"
	"syn match cUserType "\zs[a-zA-Z_][a-zA-Z_0-9]*\ze\(\s\+\|\s*[*&]\+\s*\)[a-zA-Z_][a-zA-Z_0-9]*\s*[(){\[\],;=]"
	syn match cppUserType "->\s*\zs[a-z]\?[A-Z]\w*\ze"
	hi def link cppUserType Type

	syn match cppTemplateType "\zs\w\+<[a-zA-Z0-9_>< ]\{-}\s*>\ze\(\s\+\|\s*[*&]\+\s*\)\w\+\s*[(){\[\],:;=]"
	syn match cppTemplateType "\zs\w\+<[a-zA-Z0-9_>< ]\{-}\s*>\ze\s*[({]"
	hi def link cppTemplateType Type

	syn match cppNamespacePrefix "\zs[a-zA-Z0-9_.:<>]\+\s*::\ze\w\+"
	hi def link cppNamespacePrefix Special

	syn match cConstant "\<[a-z]\?[A-Z][A-Z0-9_]*\>"
	syn clear cErrInParen

	syn keyword cStatement this create new create0 new0 auto
	syn keyword cppType string stringstream iterator

	imap <> <><LEFT>
	imap [] []<LEFT>
	imap "" ""<LEFT>
	imap '' ''<LEFT>
	imap {} {}<ESC>mt:sil! s/;\?$/;/<CR>:sil! s/,;/,/<CR>`ti
	imap () ()<ESC>mt:sil! s/;\?$/;/<CR>:sil! s/,;/,/<CR>`ti
	imap , ,<ESC>mt:sil! s/,;$/,/<CR>`ta
endf
au BufNewFile,BufRead *.[hc] call ExtraC()
au BufNewFile,BufRead *.hh call ExtraC()
au BufNewFile,BufRead *.cc call ExtraC()
au BufNewFile,BufRead *.hpp call ExtraC()
au BufNewFile,BufRead *.cpp call ExtraC()

" fish filetype support
au BufNewFile,BufRead *.fish set filetype=fish


func! HighlightExtraSpace()
	syn match ExtraSpace "\s\+$"
	hi def link ExtraSpace Error
endfunc
au BufNewFile,BufRead * call HighlightExtraSpace()


" My own Tohtml
let g:html_ignore_folding = 1
func! Tohtml()
	let l:name = expand("%")

	TOhtml

	" remove links, comments, metas, etc
	sil! %s/<a [^>]*>//g
	sil! %s/<\/a>//g
	sil! %s/<!--[\n\r]*//g
	sil! %s/-->[\n\r]*//g
	sil! %s/<meta [^>]*>[\n\r]*//g
	exe "norm ggdd"
	exe "norm gg/<style\<cr>f dt>"

	" modernize
	exe "norm ggO<!DOCTYPE html>"
	exe "norm j$i lang=\"en-US\""
	exe "norm jo<meta charset=\"utf-8\">"

	" insert my string
	exe "norm gg/<body>\<cr>o<span>" . l:name . ":</span>"
	exe "norm gg/<\\\/body>\<cr>O<span>Generated by Vim, "
		\ . "colorscheme from Ubuntu 12.04, "
		\ . "post-processed by a vimscript written by "
		\ . "eXerigumo Clanjor (哆啦比猫/兰威举).</span>"

	" some style fixes (make it look like the Ubuntu's)
	norm ggO

	exe "norm gg/^pre {\<cr>"
	exe "norm f#c2w#ffffff"						| " color
	exe "norm f#c2w#300a24"						| " background-color
	exe "norm t}i padding: 0.5em;"				| " padding
	exe "norm t}i margin: 1.5em;"				| " margin
	exe "norm t}i font-size: 11pt;"				| " font-size
	exe "norm t}i font-weight: normal;"			| " font-weight
	exe "norm t}i box-shadow: 0px 0px 16px 8px #000;" | " font-weight

	exe "norm gg/^body {\<cr>"
	exe "norm f#c2w#ffffff"						| " color
	exe "norm f#c2w#555555"						| " background-color
	exe "norm t}i padding: 0.5em;"				| " padding
	exe "norm t}i font-size: 12pt;"				| " font-size
	exe "norm t}i font-weight: bold;"			| " font-weight

	sil! exe "norm gg/^\.Todo {\<cr>"
	sil! exe "norm f#c2w#2e3436"				| " color
	sil! exe "norm f#c2w#c4a000"				| " background-color

	sil! exe "norm gg/^\.lnr {\<cr>"
	sil! exe "norm f#c2w#c4a000"				| " color

	sil! exe "norm gg/^\.Identifier {\<cr>"
	sil! exe "norm f#c2w#06989a"				| " color

	sil! exe "norm gg/^\.Constant {\<cr>"
	sil! exe "norm f#c2w#cc0000"				| " color

	sil! exe "norm gg/^\.Title {\<cr>"
	sil! exe "norm f#c2w#75507b"				| " color

	sil! exe "norm gg/^\.Special {\<cr>"
	sil! exe "norm f#c2w#75507b"				| " color

	sil! exe "norm gg/^\.Comment {\<cr>"
	sil! exe "norm f#c2w#3465a4"				| " color

	sil! exe "norm gg/^\.Type {\<cr>"
	sil! exe "norm f#c2w#4e9a06"				| " color

	sil! exe "norm gg/^\.PreProc {\<cr>"
	sil! exe "norm f#c2w#75507b"				| " color

	sil! exe "norm gg/^\.Statement {\<cr>"
	sil! exe "norm f#c2w#c4a000"				| " color

	norm ggdd

	" save and close
	wq
	redraw
	echom "Converted to " . expand("%") . ".html"
endf
com! Tohtml
	\ let g:html_number_lines = 0
	\ | call Tohtml()
	\ | unlet g:html_number_lines
com! Tohtmlnr
	\ let g:html_number_lines = 1
	\ | call Tohtml()
	\ | unlet g:html_number_lines

桌面是 gnome3(跟这个没关系吧,tty 里运行 vim 也是这个错误)

离线

#4 2013-10-06 17:40:55

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,917
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

vim -u NONE -N 还会有这些错误吗?

离线

#5 2013-10-06 18:29:32

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

百合仙子 说:

vim -u NONE -N 还会有这些错误吗?

没了
清空 .vimrc 也不会有这些错误,但是只要有 “filetype plugin on” 就会有
刚刚 yaourt -S vim 后再试还是有,看来不是 gvim-specific 问题

离线

#6 2013-10-06 18:43:36

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,917
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

你执行下这个呢?

perl -e "print join(q/,/,@INC)"

离线

#7 2013-10-06 21:18:09

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

百合仙子 说:

你执行下这个呢?

perl -e "print join(q/,/,@INC)"
cjxgm@cjprods ~$ perl -e "print join(q/,/,@INC)"
/usr/lib/perl5/site_perl,/usr/share/perl5/site_perl,/usr/lib/perl5/vendor_perl,/usr/share/perl5/vendor_perl,/usr/lib/perl5/core_perl,/usr/share/perl5/core_perl,.

最近编辑记录 cjxgm (2013-10-06 21:18:42)

离线

#8 2013-10-06 22:05:47

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,917
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

cjxgm 说:
百合仙子 说:

你执行下这个呢?

perl -e "print join(q/,/,@INC)"
cjxgm@cjprods ~$ perl -e "print join(q/,/,@INC)"
/usr/lib/perl5/site_perl,/usr/share/perl5/site_perl,/usr/lib/perl5/vendor_perl,/usr/share/perl5/vendor_perl,/usr/lib/perl5/core_perl,/usr/share/perl5/core_perl,.

没问题呀。那在 Vim 里执行这个呢?

:echo system('perl -e "print join(q/,/,@INC)"')

离线

#9 2013-10-06 22:35:05

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

百合仙子 说:
cjxgm 说:
百合仙子 说:

你执行下这个呢?

perl -e "print join(q/,/,@INC)"
cjxgm@cjprods ~$ perl -e "print join(q/,/,@INC)"
/usr/lib/perl5/site_perl,/usr/share/perl5/site_perl,/usr/lib/perl5/vendor_perl,/usr/share/perl5/vendor_perl,/usr/lib/perl5/core_perl,/usr/share/perl5/core_perl,.

没问题呀。那在 Vim 里执行这个呢?

:echo system('perl -e "print join(q/,/,@INC)"')

E484: Can't open file /tmp/vJqaSCU/1


突然发现 ruby 也是一样的出错

最近编辑记录 cjxgm (2013-10-06 22:43:20)

离线

#10 2013-10-06 22:45:20

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,917
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

cjxgm 说:
百合仙子 说:
cjxgm 说:
百合仙子 说:

你执行下这个呢?

perl -e "print join(q/,/,@INC)"
cjxgm@cjprods ~$ perl -e "print join(q/,/,@INC)"
/usr/lib/perl5/site_perl,/usr/share/perl5/site_perl,/usr/lib/perl5/vendor_perl,/usr/share/perl5/vendor_perl,/usr/lib/perl5/core_perl,/usr/share/perl5/core_perl,.

没问题呀。那在 Vim 里执行这个呢?

:echo system('perl -e "print join(q/,/,@INC)"')

E484: Can't open file /tmp/vJqaSCU/1


突然发现 ruby 也是一样的出错

你 strace -f -p 连上 Vim,然后再在 Vim 里调用 system 函数看看。

离线

#11 2013-10-06 23:05:44

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

百合仙子 说:

你 strace -f -p 连上 Vim,然后再在 Vim 里调用 system 函数看看。

Process 9013 attached
select(6, [0 3 5], NULL, [0 3], NULL)   = 1 (in [0])
read(0, "\r", 4096)                     = 1
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
write(1, "\r", 1)                       = 1
write(1, "\33[?25l", 6)                 = 6
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost -isig -icanon -echo ...}) = 0
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
write(1, "\33[?1006l\33[?1002l", 16)    = 16
ioctl(0, SNDCTL_TMR_START or SNDRV_TIMER_IOCTL_TREAD or TCSETS, {B38400 opost isig icanon echo ...}) = 0
clone(Process 9185 attached
child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f71ee16fbd0) = 9185
[pid  9185] set_robust_list(0x7f71ee16fbe0, 24 <unfinished ...>
[pid  9013] rt_sigaction(SIGHUP, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] <... set_robust_list resumed> ) = 0
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGQUIT, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGHUP, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGILL, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGTRAP, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGILL, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGABRT, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGTRAP, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGFPE, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGABRT, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGBUS, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGFPE, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGSEGV, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGBUS, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGSYS, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGSEGV, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGTERM, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGSYS, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGPROF, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9013] rt_sigaction(SIGXCPU, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [ALRM],  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigprocmask resumed> [], 8) = 0
[pid  9013] rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGTERM, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGUSR1, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGPROF, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGUSR2, {SIG_IGN, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9185] rt_sigaction(SIGXCPU, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigaction(SIGINT, {0x51dc20, [], SA_RESTORER, 0x7f71eac86450},  <unfinished ...>
[pid  9185] rt_sigaction(SIGXFSZ, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigaction resumed> {0x51dc20, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] rt_sigprocmask(SIG_UNBLOCK, [INT],  <unfinished ...>
[pid  9185] rt_sigaction(SIGUSR1, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... rt_sigprocmask resumed> [], 8) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] wait4(9185,  <unfinished ...>
[pid  9185] rt_sigaction(SIGUSR2, {SIG_DFL, [], SA_RESTORER, 0x7f71eb00b870},  <unfinished ...>
[pid  9013] <... wait4 resumed> 0x7fff654c194c, WNOHANG, NULL) = 0
[pid  9185] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9185] rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450},  <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9185] <... rt_sigaction resumed> {0x51dc20, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [INT],  <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9185] <... rt_sigprocmask resumed> [], 8) = 0
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] rt_sigaction(SIGWINCH, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450},  <unfinished ...>
[pid  9013] poll([{fd=5, events=POLLIN}], 1, 0 <unfinished ...>
[pid  9185] <... rt_sigaction resumed> {0x51dbf0, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9013] <... poll resumed> )        = 0 (Timeout)
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [WINCH],  <unfinished ...>
[pid  9013] nanosleep({0, 10000000},  <unfinished ...>
[pid  9185] <... rt_sigprocmask resumed> [], 8) = 0
[pid  9185] rt_sigaction(SIGTSTP, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [TSTP], [], 8) = 0
[pid  9185] rt_sigaction(SIGPIPE, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [PIPE], [], 8) = 0
[pid  9185] rt_sigaction(SIGCONT, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, {0x51d750, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [CONT], [], 8) = 0
[pid  9185] open("/dev/null", O_RDWR)   = 4
[pid  9185] close(0)                    = 0
[pid  9185] close(1)                    = 0
[pid  9185] close(2)                    = 0
[pid  9185] dup(4)                      = 0
[pid  9185] dup(4)                      = 1
[pid  9185] dup(4)                      = 2
[pid  9185] close(4)                    = 0
[pid  9185] execve("/usr/bin/fish", ["/usr/bin/fish", "-c", "(perl -e \"print join(q/,/,@INC)\""...], [/* 61 vars */]) = 0
[pid  9185] brk(0)                      = 0x705000
[pid  9185] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/local/lib/tls/x86_64/libncursesw.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/local/lib/tls/x86_64", 0x7fff07cf32e0) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/local/lib/tls/libncursesw.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/local/lib/tls", 0x7fff07cf32e0) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/local/lib/x86_64/libncursesw.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/local/lib/x86_64", 0x7fff07cf32e0) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/local/lib/libncursesw.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=224121, ...}) = 0
[pid  9185] mmap(NULL, 224121, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc1db6e9000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/lib/libncursesw.so.5", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0P\1\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=387040, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e8000
[pid  9185] mmap(NULL, 2484168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1db2a2000
[pid  9185] mprotect(0x7fc1db2fc000, 2093056, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1db4fb000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x59000) = 0x7fc1db4fb000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/local/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20o\0\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=148468, ...}) = 0
[pid  9185] mmap(NULL, 2217072, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1db084000
[pid  9185] mprotect(0x7fc1db09c000, 2097152, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1db29c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7fc1db29c000
[pid  9185] mmap(0x7fc1db29e000, 13424, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fc1db29e000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/local/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\272\5\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=979064, ...}) = 0
[pid  9185] mmap(NULL, 3159072, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1dad80000
[pid  9185] mprotect(0x7fc1dae66000, 2093056, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1db065000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe5000) = 0x7fc1db065000
[pid  9185] mmap(0x7fc1db06f000, 82976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fc1db06f000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/local/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\34\2\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=2027565, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e7000
[pid  9185] mmap(NULL, 3844624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1da9d5000
[pid  9185] mprotect(0x7fc1dab77000, 2093056, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1dad76000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a1000) = 0x7fc1dad76000
[pid  9185] mmap(0x7fc1dad7c000, 14864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fc1dad7c000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/local/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0PX\0\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=1059264, ...}) = 0
[pid  9185] mmap(NULL, 3154264, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1da6d2000
[pid  9185] mprotect(0x7fc1da7d4000, 2093056, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1da9d3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x101000) = 0x7fc1da9d3000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/local/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320*\0\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=89008, ...}) = 0
[pid  9185] mmap(NULL, 2184800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1da4bc000
[pid  9185] mprotect(0x7fc1da4d1000, 2097152, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1da6d1000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fc1da6d1000
[pid  9185] close(3)                    = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e6000
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e5000
[pid  9185] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e3000
[pid  9185] arch_prctl(ARCH_SET_FS, 0x7fc1db6e3740) = 0
[pid  9185] mprotect(0x7fc1dad76000, 16384, PROT_READ) = 0
[pid  9185] mprotect(0x7fc1da9d3000, 4096, PROT_READ) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db6e2000
[pid  9185] mprotect(0x7fc1db065000, 32768, PROT_READ) = 0
[pid  9185] mprotect(0x7fc1db29c000, 4096, PROT_READ) = 0
[pid  9185] mprotect(0x7fc1db4fb000, 16384, PROT_READ) = 0
[pid  9185] mprotect(0x6d1000, 4096, PROT_READ) = 0
[pid  9185] mprotect(0x7fc1db720000, 4096, PROT_READ) = 0
[pid  9185] munmap(0x7fc1db6e9000, 224121) = 0
[pid  9185] set_tid_address(0x7fc1db6e3a10) = 9185
[pid  9185] set_robust_list(0x7fc1db6e3a20, 24) = 0
[pid  9185] rt_sigaction(SIGRTMIN, {0x7fc1db08a9f0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGRT_1, {0x7fc1db08aa80, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
[pid  9185] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid  9185] brk(0)                      = 0x705000
[pid  9185] brk(0x726000)               = 0x726000
[pid  9185] ioctl(0, TIOCGPGRP, [32705]) = -1 ENOTTY (Inappropriate ioctl for device)
[pid  9185] open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=1607632, ...}) = 0
[pid  9185] mmap(NULL, 1607632, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc1db559000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=56284, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] read(3, "# GNU libc iconv configuration.\n"..., 4096) = 4096
[pid  9185] read(3, "1002//\tJUS_I.B1.002//\nmodule\tJUS"..., 4096) = 4096
[pid  9185] read(3, "ISO-IR-110//\t\tISO-8859-4//\nalias"..., 4096) = 4096
[pid  9185] read(3, "\t\tISO-8859-14//\nalias\tISO_8859-1"..., 4096) = 4096
[pid  9185] read(3, "IC-ES//\nalias\tEBCDICES//\t\tEBCDIC"..., 4096) = 4096
[pid  9185] read(3, "DIC-CP-ES//\t\tIBM284//\nalias\tCSIB"..., 4096) = 4096
[pid  9185] read(3, "//\nalias\tCSIBM864//\t\tIBM864//\nal"..., 4096) = 4096
[pid  9185] read(3, "BM939//\nmodule\tIBM939//\t\tINTERNA"..., 4096) = 4096
[pid  9185] read(3, "EUC-CN//\nalias\tCN-GB//\t\t\tEUC-CN/"..., 4096) = 4096
[pid  9185] read(3, "T//\nmodule\tISO-2022-CN-EXT//\tINT"..., 4096) = 4096
[pid  9185] read(3, "//\t\tISO_5428//\nalias\tISO_5428:19"..., 4096) = 4096
[pid  9185] read(3, "CII-8\t1\n\n#\tfrom\t\t\tto\t\t\tmodule\t\tc"..., 4096) = 4096
[pid  9185] brk(0x747000)               = 0x747000
[pid  9185] read(3, "\tfrom\t\t\tto\t\t\tmodule\t\tcost\nalias\t"..., 4096) = 4096
[pid  9185] read(3, "INTERNAL\t\tIBM9448\t\t1\nmodule\tINTE"..., 4096) = 3036
[pid  9185] read(3, "", 4096)           = 0
[pid  9185] close(3)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] futex(0x7fc1dad7b8f8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid  9185] ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff07cf3930) = -1 ENOTTY (Inappropriate ioctl for device)
[pid  9185] readlink("/proc/self/exe", "/usr/bin/fish", 4096) = 13
[pid  9185] lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] lstat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=102400, ...}) = 0
[pid  9185] lstat("/usr/bin/fish\177", 0x7fff07cf28c0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigaction(SIGINT, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGQUIT, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGTSTP, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGTTIN, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGTTOU, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGCHLD, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGPIPE, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGINT, {SIG_IGN, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGQUIT, {SIG_IGN, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigaction(SIGCHLD, {0x488120, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] getuid()                    = 1000
[pid  9013] <... nanosleep resumed> NULL) = 0
[pid  9013] wait4(9185, 0x7fff654c194c, WNOHANG, NULL) = 0
[pid  9013] recvfrom(5, 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9013] recvfrom(5, 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9013] poll([{fd=5, events=POLLIN}], 1, 0) = 0 (Timeout)
[pid  9013] nanosleep({0, 10000000},  <unfinished ...>
[pid  9185] getuid()                    = 1000
[pid  9185] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
[pid  9185] connect(3, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
[pid  9185] close(3)                    = 0
[pid  9185] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
[pid  9185] connect(3, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
[pid  9185] close(3)                    = 0
[pid  9185] open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=234, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] read(3, "# Begin /etc/nsswitch.conf\n\npass"..., 4096) = 234
[pid  9185] read(3, "", 4096)           = 0
[pid  9185] close(3)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] open("/usr/local/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=224121, ...}) = 0
[pid  9185] mmap(NULL, 224121, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc1db6e9000
[pid  9185] close(3)                    = 0
[pid  9185] open("/usr/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\"\0\0\0\0\0\0"..., 832) = 832
[pid  9185] fstat(3, {st_mode=S_IFREG|0755, st_size=51808, ...}) = 0
[pid  9185] mmap(NULL, 2148488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc1da2af000
[pid  9185] mprotect(0x7fc1da2ba000, 2097152, PROT_NONE) = 0
[pid  9185] mmap(0x7fc1da4ba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7fc1da4ba000
[pid  9185] close(3)                    = 0
[pid  9185] mprotect(0x7fc1da4ba000, 4096, PROT_READ) = 0
[pid  9185] munmap(0x7fc1db6e9000, 224121) = 0
[pid  9185] open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3
[pid  9185] fstat(3, {st_mode=S_IFREG|0644, st_size=757, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 757
[pid  9185] close(3)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] socket(PF_LOCAL, SOCK_STREAM, 0) = 3
[pid  9185] connect(3, {sa_family=AF_LOCAL, sun_path="/tmp/fishd.socket.cjxgm"}, 110) = 0
[pid  9185] fcntl(3, F_GETFL)           = 0x2 (flags O_RDWR)
[pid  9185] fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0
[pid  9185] fcntl(3, F_SETFD, FD_CLOEXEC) = 0
[pid  9185] write(3, "BARRIER\n", 8)    = 8
[pid  9185] select(4, [3], NULL, NULL, NULL) = 1 (in [3])
[pid  9185] read(3, "# Fish universal variable daemon"..., 1024) = 411
[pid  9185] read(3, "SET fish_color_host:\\x2do\\x1ecya"..., 1024) = 802
[pid  9185] read(3, 0x7fff07cf3120, 1024) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] getcwd("/home/cjxgm", 24576) = 12
[pid  9185] ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff07cf3960) = -1 ENOTTY (Inappropriate ioctl for device)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] open("/usr/share/fish/config.fish", O_RDONLY|O_CLOEXEC) = 4
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=3481, ...}) = 0
[pid  9185] lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] lstat("/usr/share", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
[pid  9185] lstat("/usr/share/fish", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] lstat("/usr/share/fish/config.fish", {st_mode=S_IFREG|0644, st_size=3481, ...}) = 0
[pid  9185] fcntl(4, F_GETFL)           = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=3481, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] lseek(4, 0, SEEK_CUR)       = 0
[pid  9185] read(4, "#\n# Main file for fish command c"..., 4096) = 3481
[pid  9185] read(4, "", 4096)           = 0
[pid  9185] close(4)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] stat("/home/cjxgm/.config/fish/functions/contains.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/etc/fish/functions/contains.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/share/fish/functions/contains.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] stat("/home/cjxgm/.config/fish/functions/set.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/etc/fish/functions/set.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/share/fish/functions/set.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] stat("/home/cjxgm/.config/fish/functions/test.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/etc/fish/functions/test.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/share/fish/functions/test.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] stat("/usr/xpg4/bin", 0x7fff07cf1b40) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] open("/dev/null", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 4
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9013] <... nanosleep resumed> NULL) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1],  <unfinished ...>
[pid  9013] wait4(9185,  <unfinished ...>
[pid  9185] <... rt_sigprocmask resumed> NULL, 8) = 0
[pid  9013] <... wait4 resumed> 0x7fff654c194c, WNOHANG, NULL) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1],  <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9185] <... rt_sigprocmask resumed> NULL, 8) = 0
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] write(3, "ERASE __fish_added_user_paths\n", 30 <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9185] <... write resumed> )       = 30
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9013] poll([{fd=5, events=POLLIN}], 1, 0 <unfinished ...>
[pid  9185] write(3, "BARRIER\n", 8 <unfinished ...>
[pid  9013] <... poll resumed> )        = 0 (Timeout)
[pid  9185] <... write resumed> )       = 8
[pid  9013] nanosleep({0, 10000000},  <unfinished ...>
[pid  9185] select(4, [3], NULL, NULL, NULL) = 1 (in [3])
[pid  9185] read(3, "ERASE __fish_added_user_paths\nBA"..., 1024) = 44
[pid  9185] read(3, 0x7fff07cf0d50, 1024) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] close(4)                    = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] access("/etc/paths", R_OK)  = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] openat(AT_FDCWD, "/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
[pid  9185] lseek(4, 0, SEEK_SET)       = 0
[pid  9185] getdents(4, /* 22 entries */, 32768) = 552
[pid  9185] stat("/etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] openat(AT_FDCWD, "/etc/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 5
[pid  9185] brk(0x76d000)               = 0x76d000
[pid  9185] lseek(5, 0, SEEK_SET)       = 0
[pid  9185] getdents(5, /* 194 entries */, 32768) = 6184
[pid  9185] getdents(5, /* 0 entries */, 32768) = 0
[pid  9185] brk(0x765000)               = 0x765000
[pid  9185] close(5)                    = 0
[pid  9185] getdents(4, /* 0 entries */, 32768) = 0
[pid  9185] brk(0x75d000)               = 0x75d000
[pid  9185] close(4)                    = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] stat("/home/cjxgm/.config/fish/functions/functions.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/etc/fish/functions/functions.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/share/fish/functions/functions.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigaction(SIGTRAP, {0x4880e0, [], SA_RESTORER|SA_SIGINFO, 0x7fc1db093870}, NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] open("/etc/fish/config.fish", O_RDONLY|O_CLOEXEC) = 4
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=644, ...}) = 0
[pid  9185] lstat("/etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] lstat("/etc/fish", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid  9185] lstat("/etc/fish/config.fish", {st_mode=S_IFREG|0644, st_size=644, ...}) = 0
[pid  9185] fcntl(4, F_GETFL)           = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=644, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] lseek(4, 0, SEEK_CUR)       = 0
[pid  9185] read(4, "#\n# Init file for fish\n#\n\n#\n# So"..., 4096) = 644
[pid  9185] read(4, "", 4096)           = 0
[pid  9185] close(4)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] stat("/home/cjxgm/.config/fish/functions/status.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/etc/fish/functions/status.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] stat("/usr/share/fish/functions/status.fish", 0x7fff07cf1be0) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] write(3, "BARRIER\n", 8)    = 8
[pid  9185] select(4, [3], NULL, NULL, NULL) = 1 (in [3])
[pid  9185] read(3, "BARRIER_REPLY\n", 1024) = 14
[pid  9185] read(3, 0x7fff07cf31a0, 1024) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9185] stat("/home/cjxgm/.config/fish", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] open("/home/cjxgm/.config/fish/config.fish", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid  9185] futex(0x6d39e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid  9185] open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 4
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=2492, ...}) = 0
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db71f000
[pid  9185] read(4, "# Locale name alias data base.\n#"..., 4096) = 2492
[pid  9185] read(4, "", 4096)           = 0
[pid  9185] close(4)                    = 0
[pid  9185] munmap(0x7fc1db71f000, 4096) = 0
[pid  9185] open("/usr/share/locale/en_US.utf8/LC_MESSAGES/fish.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en_US/LC_MESSAGES/fish.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en.utf8/LC_MESSAGES/fish.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en/LC_MESSAGES/fish.mo", O_RDONLY) = 4
[pid  9185] fstat(4, {st_mode=S_IFREG|0644, st_size=89071, ...}) = 0
[pid  9185] mmap(NULL, 89071, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fc1db70a000
[pid  9185] close(4)                    = 0
[pid  9185] open("/usr/share/locale/en_US.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9185] clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fc1db6e3a10) = 9186
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], Process 9186 attached
NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1],  <unfinished ...>
[pid  9186] set_robust_list(0x7fc1db6e3a20, 24) = 0
[pid  9185] <... rt_sigprocmask resumed> NULL, 8) = 0
[pid  9185] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1],  <unfinished ...>
[pid  9186] open("/dev/null", O_WRONLY|O_CREAT|O_TRUNC, 0666 <unfinished ...>
[pid  9185] <... rt_sigprocmask resumed> NULL, 8) = 0
[pid  9186] <... open resumed> )        = 4
[pid  9185] wait4(-1,  <unfinished ...>
[pid  9186] close(2)                    = 0
[pid  9186] dup2(4, 2)                  = 2
[pid  9186] close(4)                    = 0
[pid  9186] rt_sigaction(SIGHUP, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGILL, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGTRAP, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGABRT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGBUS, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGFPE, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGKILL, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = -1 EINVAL (Invalid argument)
[pid  9013] <... nanosleep resumed> NULL) = 0
[pid  9186] rt_sigaction(SIGUSR1, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870},  <unfinished ...>
[pid  9013] wait4(9185,  <unfinished ...>
[pid  9186] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] <... wait4 resumed> 0x7fff654c194c, WNOHANG, NULL) = 0
[pid  9186] rt_sigaction(SIGUSR2, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870},  <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9186] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9186] rt_sigaction(SIGSEGV, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870},  <unfinished ...>
[pid  9013] recvfrom(5,  <unfinished ...>
[pid  9186] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] <... recvfrom resumed> 0x19109f4, 4096, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
[pid  9186] rt_sigaction(SIGPIPE, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870},  <unfinished ...>
[pid  9013] poll([{fd=5, events=POLLIN}], 1, 0 <unfinished ...>
[pid  9186] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9013] <... poll resumed> )        = 0 (Timeout)
[pid  9186] rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870},  <unfinished ...>
[pid  9013] nanosleep({0, 10000000},  <unfinished ...>
[pid  9186] <... rt_sigaction resumed> NULL, 8) = 0
[pid  9186] rt_sigaction(SIGTERM, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGCONT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGSTOP, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = -1 EINVAL (Invalid argument)
[pid  9186] rt_sigaction(SIGTSTP, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGTTIN, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGTTOU, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGURG, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGXCPU, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGXFSZ, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGVTALRM, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGPROF, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGWINCH, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGIO, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGPWR, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGSYS, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGSTKFLT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGABRT, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigaction(SIGSYS, {SIG_DFL, [], SA_RESTORER, 0x7fc1db093870}, NULL, 8) = 0
[pid  9186] rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
[pid  9186] write(2, ".: Error encountered while sourc"..., 114) = 114
[pid  9186] exit_group(1)               = ?
[pid  9186] +++ exited with 1 +++
[pid  9185] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], WSTOPPED, NULL) = 9186
[pid  9185] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=9186, si_status=1, si_utime=0, si_stime=0} ---
[pid  9185] wait4(-1, 0x7fff07cf2dcc, WNOHANG|WSTOPPED, NULL) = -1 ECHILD (No child processes)
[pid  9185] rt_sigreturn()              = 9186
[pid  9185] lseek(2, 0, SEEK_CUR)       = 0
[pid  9185] fstat(2, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
[pid  9185] ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff07cea010) = -1 ENOTTY (Inappropriate ioctl for device)
[pid  9185] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db709000
[pid  9185] mmap(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc1db705000
[pid  9185] write(2, "f", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "s", 1)            = 1
[pid  9185] write(2, "h", 1)            = 1
[pid  9185] write(2, ":", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "I", 1)            = 1
[pid  9185] write(2, "l", 1)            = 1
[pid  9185] write(2, "l", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, "g", 1)            = 1
[pid  9185] write(2, "a", 1)            = 1
[pid  9185] write(2, "l", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "c", 1)            = 1
[pid  9185] write(2, "o", 1)            = 1
[pid  9185] write(2, "m", 1)            = 1
[pid  9185] write(2, "m", 1)            = 1
[pid  9185] write(2, "a", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "d", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "a", 1)            = 1
[pid  9185] write(2, "m", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "\342\200\234", 3) = 3
[pid  9185] write(2, "(", 1)            = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, "r", 1)            = 1
[pid  9185] write(2, "l", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "-", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "\"", 1)           = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "r", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "t", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "j", 1)            = 1
[pid  9185] write(2, "o", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "(", 1)            = 1
[pid  9185] write(2, "q", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, ",", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, ",", 1)            = 1
[pid  9185] write(2, "@", 1)            = 1
[pid  9185] write(2, "I", 1)            = 1
[pid  9185] write(2, "N", 1)            = 1
[pid  9185] write(2, "C", 1)            = 1
[pid  9185] write(2, ")", 1)            = 1
[pid  9185] write(2, "\"", 1)           = 1
[pid  9185] write(2, ")", 1)            = 1
[pid  9185] write(2, "\342\200\235", 3) = 3
[pid  9185] write(2, "\n", 1)           = 1
[pid  9185] write(2, "S", 1)            = 1
[pid  9185] write(2, "t", 1)            = 1
[pid  9185] write(2, "a", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "d", 1)            = 1
[pid  9185] write(2, "a", 1)            = 1
[pid  9185] write(2, "r", 1)            = 1
[pid  9185] write(2, "d", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "u", 1)            = 1
[pid  9185] write(2, "t", 1)            = 1
[pid  9185] write(2, ":", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "(", 1)            = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, "r", 1)            = 1
[pid  9185] write(2, "l", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "-", 1)            = 1
[pid  9185] write(2, "e", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "\"", 1)           = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "r", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "t", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "j", 1)            = 1
[pid  9185] write(2, "o", 1)            = 1
[pid  9185] write(2, "i", 1)            = 1
[pid  9185] write(2, "n", 1)            = 1
[pid  9185] write(2, "(", 1)            = 1
[pid  9185] write(2, "q", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, ",", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, ",", 1)            = 1
[pid  9185] write(2, "@", 1)            = 1
[pid  9185] write(2, "I", 1)            = 1
[pid  9185] write(2, "N", 1)            = 1
[pid  9185] write(2, "C", 1)            = 1
[pid  9185] write(2, ")", 1)            = 1
[pid  9185] write(2, "\"", 1)           = 1
[pid  9185] write(2, ")", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, ">", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, "t", 1)            = 1
[pid  9185] write(2, "m", 1)            = 1
[pid  9185] write(2, "p", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, "v", 1)            = 1
[pid  9185] write(2, "K", 1)            = 1
[pid  9185] write(2, "W", 1)            = 1
[pid  9185] write(2, "d", 1)            = 1
[pid  9185] write(2, "y", 1)            = 1
[pid  9185] write(2, "k", 1)            = 1
[pid  9185] write(2, "I", 1)            = 1
[pid  9185] write(2, "/", 1)            = 1
[pid  9185] write(2, "5", 1)            = 1
[pid  9185] write(2, "\n", 1)           = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, " ", 1)            = 1
[pid  9185] write(2, "^", 1)            = 1
[pid  9185] write(2, "\n", 1)           = 1
[pid  9185] ioctl(0, SNDCTL_TMR_START or SNDRV_TIMER_IOCTL_TREAD or TCSETS, {B0 -opost -isig -icanon -echo ...}) = -1 ENOTTY (Inappropriate ioctl for device)
[pid  9185] fcntl(3, F_SETFL, O_RDONLY) = 0
[pid  9185] close(3)                    = 0
[pid  9185] exit_group(127)             = ?
[pid  9185] +++ exited with 127 +++
<... nanosleep resumed> NULL)           = ? ERESTART_RESTARTBLOCK (Interrupted by signal)
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=9185, si_status=127, si_utime=0, si_stime=0} ---
restart_syscall(<... resuming interrupted call ...>) = 0
wait4(9185, [{WIFEXITED(s) && WEXITSTATUS(s) == 127}], WNOHANG, NULL) = 9185
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
ioctl(0, SNDCTL_TMR_START or SNDRV_TIMER_IOCTL_TREAD or TCSETS, {B38400 opost -isig -icanon -echo ...}) = 0
write(1, "\33[?1006h\33[?1002h", 16)    = 16
rt_sigaction(SIGWINCH, {0x51dbf0, [], SA_RESTORER, 0x7f71eac86450}, {0x51dbf0, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [WINCH], [], 8) = 0
rt_sigaction(SIGTSTP, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, {SIG_DFL, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [TSTP], [], 8) = 0
rt_sigaction(SIGCONT, {0x51d750, [], SA_RESTORER, 0x7f71eac86450}, {0x51d750, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [CONT], [], 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [PIPE], [], 8) = 0
rt_sigaction(SIGINT, {0x51dc20, [], SA_RESTORER, 0x7f71eac86450}, {0x51dc20, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [INT], [], 8) = 0
rt_sigaction(SIGALRM, {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, {SIG_IGN, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [ALRM], [], 8) = 0
rt_sigaction(SIGPWR, {0x51dcb0, [], SA_RESTORER, 0x7f71eac86450}, {0x51dcb0, [], SA_RESTORER, 0x7f71eac86450}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [PWR], [], 8) = 0
rt_sigaction(SIGHUP, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGILL, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGTRAP, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGABRT, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGFPE, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGBUS, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGSEGV, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGSYS, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGTERM, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGPROF, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGXCPU, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGXFSZ, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGUSR1, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
rt_sigaction(SIGUSR2, {0x51ec60, [], SA_RESTORER, 0x7f71eb00b870}, NULL, 8) = 0
poll([{fd=5, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=5, revents=POLLOUT}])
writev(5, [{"\24\0\6\0\6\0`\2'\0\0\0\0\0\0\0\0\0\0\0@B\17\0", 24}, {NULL, 0}, {"", 0}], 3) = 24
poll([{fd=5, events=POLLIN}], 1, 4294967295) = 1 ([{fd=5, revents=POLLIN}])
recvfrom(5, "\1\0102\0\4\0\0\0\37\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096, 0, NULL, NULL) = 48
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=5, revents=POLLOUT}])
writev(5, [{"+\0\1\0", 4}, {NULL, 0}, {"", 0}], 3) = 4
poll([{fd=5, events=POLLIN}], 1, 4294967295) = 1 ([{fd=5, revents=POLLIN}])
recvfrom(5, "\1\0023\0\0\0\0\0\7\0`\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096, 0, NULL, NULL) = 32
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
write(1, "\33]2;[No Name] - VIM\7", 20) = 20
write(1, "\33]1;[No Name]\7", 14)       = 14
ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost -isig -icanon -echo ...}) = 0
ioctl(1, TIOCGWINSZ, {ws_row=24, ws_col=80, ws_xpixel=0, ws_ypixel=0}) = 0
open("/tmp/vKWdykI/5", O_RDONLY)        = -1 ENOENT (No such file or directory)
write(1, "\33[1m\33[37m\33[41mE484: Can't open f"..., 64) = 64
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost -isig -icanon -echo ...}) = 0
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {0, 0}) = 0 (Timeout)
write(1, "\33[24;63H0,0-1\33[9CAll\33[1;5H\33[?12l"..., 38) = 38
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost -isig -icanon -echo ...}) = 0
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
recvfrom(5, 0x19109f4, 4096, 0, 0, 0)   = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=5, events=POLLIN}], 1, 0)     = 0 (Timeout)
select(6, [0 3 5], NULL, [0 3], {4, 0}^CProcess 9013 detached
 <detached ...>

离线

#12 2013-10-06 23:08:37

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

不会是因为这个吧…………

execve("/usr/bin/fish", ["/usr/bin/fish", "-c", "(perl -e \"print join(q/,/,@INC)\""...], [/* 61 vars */]) = 0

(fish是bash不兼容的……fish里的“()”相当于bash里的“$()”)

最近编辑记录 cjxgm (2013-10-06 23:14:10)

离线

#13 2013-10-06 23:14:53

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

好吧,确实是这个问题……
.vimrc 里加上 set shell=bash 就好了

离线

#14 2013-10-07 11:21:49

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,917
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

cjxgm 说:

好吧,确实是这个问题……
.vimrc 里加上 set shell=bash 就好了

原来你用的是 fish……感受到我不用 fish 的理由之一了吧?

离线

#15 2013-10-07 14:02:11

cjxgm
忙,却还想养猫?
所在地: 杭州
注册时间: 2011-08-19
帖子: 417
个人网站

Re: [已解决][vim] Error detected while processing /u/s/v/v/ftplugin/perl.vim

百合仙子 说:
cjxgm 说:

好吧,确实是这个问题……
.vimrc 里加上 set shell=bash 就好了

原来你用的是 fish……感受到我不用 fish 的理由之一了吧?

也就用了一个多月……因为不想折腾……
好吧,等有空折腾好 zsh 就换过去

离线

页脚