Skip to content

Commit 942d03e

Browse files
committed
Make merged file hidden while changing layout
Fix samoshkin#12: We were assuming users had 'hidden' set. mergetool#start ends with two steps: prefer_revision and set_layout. prefer_revision modifies the current buffer to remove conflict markers. set_layout closes all but the first window in g:mergetool_layout and then shows the other windows in order. If a user has these combination of settings, closing the merge buffer's window will trigger an error: set nohidden let g:mergetool_layout = 'rm' We modify the merge buffer (without saving it -- so the user knows we made changes) and then we try to close it (because 'm' is not the first item in mergetool_layout), which triggers an "unsaved changes" error. Prevent the error by temporarily marking the merge buffer to hide while we're modifying the layout. Uses setbufvar (introduced to vim in 7.0) to clean up so if the user doesn't include 'm' in the layout, we don't fail to clean up. And in that case, the merge buffer is already hidden, so it doesn't cause unsaved errors until it's shown again.
1 parent 0275a85 commit 942d03e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

autoload/mergetool.vim

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ function! mergetool#set_layout(layout) " {{{
149149
let l:_winstate = winsaveview()
150150
endif
151151

152+
" Ensure merged file (which likely has unsaved conflict removal changes) can
153+
" be hidden without error.
154+
let bufhidden_bak = getbufvar(s:mergedfile_bufnr, '&bufhidden')
155+
call setbufvar(s:mergedfile_bufnr, '&bufhidden', 'hide')
156+
152157
" Before changing layout, turn off diff mode in all visible windows
153158
windo diffoff
154159

@@ -198,6 +203,7 @@ function! mergetool#set_layout(layout) " {{{
198203
if s:goto_win_with_merged_file() && exists('l:_winstate')
199204
call winrestview(l:_winstate)
200205
endif
206+
call setbufvar(s:mergedfile_bufnr, '&bufhidden', bufhidden_bak)
201207
endfunction " }}}
202208

203209
" Toggles between given and default layout

0 commit comments

Comments
 (0)