1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
This commit is contained in:
plrectco 2019-10-09 10:37:51 -07:00
parent 2dad1083fd
commit 43044da05f
2 changed files with 23 additions and 1 deletions

View File

@ -4,3 +4,24 @@ https://github.com/morhetz/gruvbox.git
https://github.com/scrooloose/nerdcommenter.git
https://github.com/alpertuna/vim-header
https://github.com/aperezdc/vim-template.git
https://github.com/vim-scripts/auto-pairs-gentle.git
https://github.com/morhetz/gruvbox.git
https://github.com/scrooloose/nerdcommenter.git
https://github.com/alpertuna/vim-header
https://github.com/aperezdc/vim-template.git
https://github.com/christoomey/vim-tmux-navigator.git
https://github.com/prabirshrestha/asyncomplete-lsp.vim.git
https://github.com/prabirshrestha/asyncomplete.vim.git
https://github.com/prabirshrestha/async.vim.git
https://github.com/vim-scripts/auto-pairs-gentle.git
https://github.com/morhetz/gruvbox.git
https://github.com/scrooloose/nerdcommenter.git
https://github.com/ervandew/supertab.git
https://github.com/vim-syntastic/syntastic.git
https://github.com/djoshea/vim-autoread.git
https://github.com/alpertuna/vim-header
https://github.com/henrik/vim-indexed-search.git
https://github.com/prabirshrestha/vim-lsp.git
https://github.com/mhinz/vim-signify.git
https://github.com/aperezdc/vim-template.git
https://github.com/christoomey/vim-tmux-navigator.git

View File

@ -110,8 +110,9 @@ endfunction
" eg. you can go to //ads/video.txt wherever you are inside
" citc by :e //ads/video/.txt.
function GoogleE(...)
" if the number of argument is not 0
if a:0
let l:filepath = a:0
let l:filepath = a:1
let l:citc = GetCitCPath()
let l:dst_filepath = GetGoogle3Path(l:filepath, l:citc)
execute 'e '. l:dst_filepath