diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-05-01 22:19:40 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-05-03 19:25:18 +0200 |
commit | 3c45e3b42a6c8c48d4f2bc7d51ccfa0f6781d849 (patch) | |
tree | bc4056ebc380e77e511b03bb5f638a8779b294e2 /runtime/autoload/pythoncomplete.vim | |
parent | 91afb30b667bbc321d351708f694d00b256be585 (diff) | |
download | rneovim-3c45e3b42a6c8c48d4f2bc7d51ccfa0f6781d849.tar.gz rneovim-3c45e3b42a6c8c48d4f2bc7d51ccfa0f6781d849.tar.bz2 rneovim-3c45e3b42a6c8c48d4f2bc7d51ccfa0f6781d849.zip |
vim-patch:a0f849e
Update runtime files.
https://github.com/vim/vim/commit/a0f849ee40cbea3c889345256786b640b0becca2
Missing files runtime/doc/tags and runtime/doc/todo.txt. Excluded
runtime/syntax/vim.vim, since we diverged quite a bit from vim in this file.
Diffstat (limited to 'runtime/autoload/pythoncomplete.vim')
-rw-r--r-- | runtime/autoload/pythoncomplete.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/autoload/pythoncomplete.vim b/runtime/autoload/pythoncomplete.vim index 57add71cbd..ecc36646d9 100644 --- a/runtime/autoload/pythoncomplete.vim +++ b/runtime/autoload/pythoncomplete.vim @@ -377,6 +377,7 @@ class PyParser: def __init__(self): self.top = Scope('global',0) self.scope = self.top + self.parserline = 0 def _parsedotname(self,pre=None): #returns (dottedname, nexttoken) |