1
0
forked from VimPlug/jedi

enable assignment operators and add substraction support for numbers

This commit is contained in:
Dave Halter
2014-03-10 16:51:47 +01:00
parent 52348e0d1b
commit af7814c6d4
3 changed files with 12 additions and 2 deletions

View File

@@ -64,3 +64,10 @@ i += 1
i += 1
#? float()
x[i]
i = 1
i += 1
i -= 3
i += 1
#? int()
x[i]