vim-patch:7.4.857

Problem:    Dragging the current tab with the mouse doesn't work properly.
Solution:   Take the current tabpage index into account. (Hirohito Higashi)

4a4b821085
This commit is contained in:
Jurica Bradaric
2016-02-10 22:37:39 +01:00
parent 84281bf675
commit 162d4bb3c6
2 changed files with 7 additions and 4 deletions

View File

@@ -2347,9 +2347,12 @@ do_mouse (
if (mouse_row == 0 && firstwin->w_winrow > 0) {
if (is_drag) {
if (in_tab_line) {
tabpage_move(tab_page_click_defs[mouse_col].type == kStlClickTabClose
? 9999
: tab_page_click_defs[mouse_col].tabnr - 1);
if (tab_page_click_defs[mouse_col].type == kStlClickTabClose) {
tabpage_move(9999);
} else {
int tabnr = tab_page_click_defs[mouse_col].tabnr;
tabpage_move(tabnr < tabpage_index(curtab) ? tabnr - 1 : tabnr);
}
}
return false;
}