Fix vim matcher string comparison

Refs 2f361711fe.
This commit is contained in:
Kim Silkebækken 2013-01-30 09:52:22 +01:00
parent cc9b0daefc
commit fb929b76cc
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@ def help():
def cmdwin():
return bool(int(vim.eval('bufname("%") == "[Command Line]"')))
return bool(int(vim.eval('bufname("%") is# "[Command Line]"')))