Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vimagit
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
jreybert
vimagit
Commits
55fbadc7
Commit
55fbadc7
authored
8 years ago
by
Jérôme Reybert
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #93 from hkupty/signify-support
Add support for Vim-Signify
parents
69d704dd
e1e862cd
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugin/magit.vim
+10
-6
10 additions, 6 deletions
plugin/magit.vim
with
10 additions
and
6 deletions
plugin/magit.vim
+
10
−
6
View file @
55fbadc7
...
...
@@ -55,17 +55,21 @@ let g:magit_default_fold_level = get(g:, 'magit_default_fold_level',
let
g:magit_default_sections
=
get
(
g
:,
'magit_default_sections'
,
[
'info'
,
'global_help'
,
'commit'
,
'staged'
,
'unstaged'
])
let
g:magit_discard_untracked_do_delete
=
get
(
g
:,
'magit_discard_untracked_do_delete'
,
0
)
let
g:magit_refresh_gitgutter
=
get
(
g
:,
'magit_refresh_gitgutter'
,
1
)
let
g:magit_refresh_gutter
=
get
(
g
:,
'magit_refresh_gutter'
,
1
)
" Should deprecate the following
let
g:magit_refresh_gitgutter
=
get
(
g
:,
'magit_refresh_gitgutter'
,
0
)
let
g:magit_warning_max_lines
=
get
(
g
:,
'magit_warning_max_lines'
,
10000
)
let
g:magit_git_cmd
=
get
(
g
:,
'magit_git_cmd'
,
"git"
)
execute
"nnoremap <silent> "
.
g:magit_show_magit_mapping
.
" :call magit#show_magit('v')<cr>"
if
(
g:magit_refresh_gitgutter
==
1
)
if
(
g:magit_refresh_gutter
==
1
||
g:magit_refresh_gitgutter
==
1
)
autocmd
User
VimagitUpdateFile
\
if
(
exists
(
"*gitgutter#process_buffer"
)
)
|
\
call
gitgutter#process_buffer
(
bufnr
(
g:magit_last_updated_buffer
),
0
)
|
\
elseif
(
exists
(
"*sy#util#refresh_windows"
)
)
|
\
call
sy
#util#refresh_windows
()
|
\
endif
endif
" }}}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment