forked from VimPlug/jedi
17 lines
383 B
Python
17 lines
383 B
Python
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 []
|