From 7217c7749e5403c9c7856c1d12c7986eb9c3b460 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Tue, 31 Mar 2020 17:52:49 +0300 Subject: Goodbye vim, been using neovim for ages now; home directory cleanup --- dotfiles/.vim/autoload/neomake/jobinfo.vim | 87 ------------------------------ 1 file changed, 87 deletions(-) delete mode 100644 dotfiles/.vim/autoload/neomake/jobinfo.vim (limited to 'dotfiles/.vim/autoload/neomake/jobinfo.vim') diff --git a/dotfiles/.vim/autoload/neomake/jobinfo.vim b/dotfiles/.vim/autoload/neomake/jobinfo.vim deleted file mode 100644 index 278a3f5..0000000 --- a/dotfiles/.vim/autoload/neomake/jobinfo.vim +++ /dev/null @@ -1,87 +0,0 @@ -let s:jobinfo_base = { - \ 'cd_back_cmd': '', - \ 'pending_output': [], - \ } -function! s:jobinfo_base.get_pid() abort - if has_key(self, 'vim_job') - let info = job_info(self.vim_job) - if info.status ==# 'run' - return info.process - endif - return -1 - endif - try - return jobpid(self.nvim_job) - catch /^Vim(return):E900:/ - return -1 - endtry -endfunction - -function! s:jobinfo_base.as_string() abort - let extra = [] - for k in ['canceled', 'finished'] - if get(self, k, 0) - let extra += [k] - endif - endfor - return printf('Job %d: %s%s', self.id, self.name, - \ empty(extra) ? '' : ' ['.join(extra, ', ').']') -endfunction - -function! s:jobinfo_base.cd_back() abort - if !empty(self.cd_back_cmd) - exe self.cd_back_cmd - let self.cd_back_cmd = '' - endif -endfunction - -function! s:jobinfo_base.cd(...) abort - if a:0 - if has_key(self, 'cd_from_setting') - call neomake#log#debug(printf( - \ 'jobinfo.cd(): keeping cwd from setting: %s.', - \ string(self.cd_from_setting)), self) - return '' - endif - let dir = a:1 - else - let maker = self.maker - let dir = neomake#utils#GetSetting('cwd', maker, '', self.ft, self.bufnr, 1) - if !empty(dir) - let self.cd_from_setting = dir - endif - endif - - if dir !=# '' - if dir[0:1] ==# '%:' - let dir = neomake#utils#fnamemodify(self.bufnr, dir[1:]) - else - let dir = expand(dir, 1) - endif - let dir = fnamemodify(dir, ':p') - " NOTE: need to keep trailing backslash with "/" and "X:\" on Windows. - if dir !=# '/' && dir[-1:] ==# neomake#utils#Slash() && dir[-2] !=# ':' - let dir = dir[:-2] - endif - else - let dir = get(self, 'cwd', $HOME) - endif - - let cur_wd = getcwd() - if dir !=# cur_wd - let [cd_error, cd_back_cmd] = neomake#utils#temp_cd(dir, cur_wd) - if !empty(cd_error) - call neomake#log#debug(printf('jobinfo.cd(): error when trying to change cwd to %s: %s.', - \ dir, cd_error)) - return cd_error - endif - let self.cwd = dir - let self.cd_back_cmd = cd_back_cmd - else - let self.cwd = cur_wd - endif - return '' -endfunction - -let g:neomake#jobinfo#base = s:jobinfo_base -" vim: ts=4 sw=4 et -- cgit v1.2.3