We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4026bbc commit 1ace453Copy full SHA for 1ace453
after/ftplugin/qf.vim
@@ -34,7 +34,11 @@ set nobuflisted
34
let b:undo_ftplugin .= "| setl wrap< rnu< nu< bl<"
35
36
" are we in a location list or a quickfix list?
37
-let b:qf_isLoc = !empty(getloclist(0))
+if has('patch-7.4.2215')
38
+ let b:qf_isLoc = getwininfo(win_getid())[0].loclist
39
+else
40
+ let b:qf_isLoc = !empty(getloclist(0))
41
+endif
42
43
" customize the statusline
44
if exists("g:qf_statusline")
0 commit comments