Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: romainl/vim-qf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7b9e315a4f1b6d5028dcc0b309c660918e66a0a2
Choose a base ref
..
head repository: romainl/vim-qf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1ace45375ccda7233dfdd97b550eb45b32c2cb9a
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 after/ftplugin/qf.vim
4 changes: 2 additions & 2 deletions after/ftplugin/qf.vim
Original file line number Diff line number Diff line change
@@ -34,8 +34,8 @@ set nobuflisted
let b:undo_ftplugin .= "| setl wrap< rnu< nu< bl<"

" are we in a location list or a quickfix list?
if has('patch-7.4.2200')
let b:qf_isLoc = get(getloclist(0, {'winid': 1}), 'winid', 0) == win_getid()
if has('patch-7.4.2215')
let b:qf_isLoc = getwininfo(win_getid())[0].loclist
else
let b:qf_isLoc = !empty(getloclist(0))
endif