Skip to content

Commit 7b028a5

Browse files
committed
Buffer variable instead of local variable
1 parent 7d0cd69 commit 7b028a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

autoload/csscomplete.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ function! csscomplete#CompleteCSS(findstart, base)
121121
let postfix = g:csscomplete_postfix
122122
endif
123123

124-
if exists('l:csscomplete_postfix')
125-
let postfix = l:csscomplete_postfix
124+
if exists('b:csscomplete_postfix')
125+
let postfix = b:csscomplete_postfix
126126
endif
127127

128128
if !exists('postfix')

0 commit comments

Comments
 (0)