我正在使用set_custom_completer
设置自定义完成符:
import IPython
def foo(self, t):
return []
IPython.get_ipython().set_custom_completer(foo)
问题在于foo
的签名:参数t
只是一个string
,包含从行开头到光标的内容。有没有办法找到整个单元格内容和光标位置?
例如,假设单元格中的状态为:
foo
bar<TAB>baz
然后t
将为bar
,但我喜欢
(`foo\barbaz`,
1, # line 1
4 # cursor position 4 in the line
)
系统信息是:
The version of the notebook server is 5.0.0b2 and is running on:
Python 3.6.3rc1+ (default, Sep 29 2017, 16:55:05)
[GCC 5.x 20170328]
Current Kernel Information:
Python 3.6.3rc1+ (default, Sep 29 2017, 16:55:05)
Type "copyright", "credits" or "license" for more information.
IPython 5.3.0 -- An enhanced Interactive Python.
不幸的是,我无法升级它。
答案 0 :(得分:2)
在挖掘源代码和堆栈跟踪之后,我找不到任何明显暴露单元格文本的东西。但是我对ipython source没有详细的了解,所以我在下面的黑客中找到了能够满足你需求的东西:
import IPython
import inspect
def foo(self, t):
locals_caller = inspect.currentframe().f_back.f_back.f_back.f_back.f_locals
code = locals_caller['code']
cursor_pos = locals_caller['cursor_pos']
# remove any reference to avoid leakages
del locals_caller
return [code]
IPython.get_ipython().set_custom_completer(foo)
我已经对堆栈回溯进行了硬编码,但是如果你想要一个适用于版本/更新的稳定函数,你可能想要在它周围加一个逻辑。这应该足以让你朝着正确的方向前进。