mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
35 lines
900 B
VimL
35 lines
900 B
VimL
|
setlocal nomodeline
|
||
|
setlocal nobuflisted
|
||
|
setlocal nolist nospell
|
||
|
setlocal nowrap nofoldenable
|
||
|
setlocal nonumber norelativenumber
|
||
|
setlocal foldcolumn=0 colorcolumn=0
|
||
|
|
||
|
call gina#action#include('browse')
|
||
|
call gina#action#include('compare')
|
||
|
call gina#action#include('diff')
|
||
|
call gina#action#include('edit')
|
||
|
call gina#action#include('export')
|
||
|
call gina#action#include('show')
|
||
|
call gina#action#include('yank')
|
||
|
call gina#action#include('ls')
|
||
|
|
||
|
" Does this buffer points files on working-tree or index/commit?
|
||
|
let s:is_worktree = empty(gina#core#buffer#param('%', 'rev'))
|
||
|
|
||
|
if g:gina#command#grep#use_default_aliases
|
||
|
if s:is_worktree
|
||
|
call gina#action#shorten('edit')
|
||
|
else
|
||
|
call gina#action#shorten('show')
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
if g:gina#command#grep#use_default_mappings
|
||
|
if s:is_worktree
|
||
|
nmap <buffer> <Return> <Plug>(gina-edit)zv
|
||
|
else
|
||
|
nmap <buffer> <Return> <Plug>(gina-show)zv
|
||
|
endif
|
||
|
endif
|