1
0
forked from VimPlug/jedi

Keyword completion is now possible in a semantic way. This includes better testing and documentation.

This commit is contained in:
Dave Halter
2016-06-06 18:32:00 +02:00
parent 028d0a2509
commit 6b9f96ce13
2 changed files with 36 additions and 25 deletions

View File

@@ -26,6 +26,34 @@ a + break
#? ['break']
b; break
# Should not complete after as.
# -----------------
# Keywords should not appear everywhere.
# -----------------
#? []
with open() as f
#? []
def i
#? []
class i
#? []
continue i
# More syntax details, e.g. while only after newline, but not after semicolon,
# continue also after semicolon
#? ['while']
while
#? []
x while
#? []
x; while
#? ['continue']
x; continue
#? []
and
#? ['and']
x and
#? []
x * and