File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ Release 1.7.3
2
+ =============
3
+
4
+ This release adds some minor improvements, and fixes a lot of bugs. Most of
5
+ these has been in master branch since a long time.
6
+
7
+ New features
8
+ ------------
9
+
10
+ * Add option to auto-close magit buffer/window on clean state #132
11
+ * Jump to source is now line precise #152 #153
12
+ Using the 'E' (for edit) mapping, cursor will now jump to the exact line
13
+ instead of the beginning of the hunk.
14
+ * Smarter cursor position when staging/refreshing.
15
+ When refreshing, the cirsor stays in the same position. When (un)staging,
16
+ cursor move to the hunk close to the current one.
17
+ * Add vimagit support to vim-airline
18
+
19
+ Bug fixes
20
+ ---------
21
+
22
+ * Fix freeze while refresh fix #170 #36
23
+ * Fix character escape issues #156 #168
24
+ These are two old issues, which have been reproduced thanks to the issue
25
+ #168. Big up to @akrejczinger for the docker image.
26
+ * Discarding untracked file results in an error in some cases fix #165
27
+ * Ungraceful behaviour when opening magit outside of a git repo fix #162
28
+ * Freshly created repository fails to open in vimagit fix #169
29
+ * Handle commit set at the end of magit_default_sections #149
30
+
1
31
Release 1.7.2
2
32
=============
3
33
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ if exists('g:loaded_magit') || !executable('git') || &cp
5
5
endif
6
6
let g: loaded_magit = 1
7
7
8
- let g: vimagit_version = [1 , 7 , 2 ]
8
+ let g: vimagit_version = [1 , 7 , 3 ]
9
9
10
10
" Initialisation {{{
11
11
You can’t perform that action at this time.
0 commit comments