De Morgan

This commit is contained in:
Marco Hinz 2016-01-15 17:02:53 +01:00
parent e73a0114f3
commit 4f69c11c7c

View File

@ -145,5 +145,5 @@ endfunction
" Function: #buffer_is_active {{{1
function! sy#buffer_is_active()
return (!exists('b:sy') || !b:sy.active) ? 0 : 1
return exists('b:sy') && b:sy.active
endfunction