1
0
forked from VimPlug/jedi

started with the vim interface

This commit is contained in:
David Halter
2012-03-06 00:30:02 +01:00
parent 8d85154fe9
commit 8d1f3342a9
2 changed files with 79 additions and 0 deletions

16
functions.py Normal file
View File

@@ -0,0 +1,16 @@
import pyfuzzyparser
def complete(source, row, colum, file_callback=None):
"""
An auto completer for python files.
:param source: The source code of the current file
:type source: string
:param row: The row to complete in.
:type row: int
:param col: The column to complete in.
:type col: int
:return: list
:rtype: list
"""
return []