GPS插件中的上下文

时间:2016-02-24 11:56:09

标签: gnat-gps

我使用

在工具栏中创建了一个按钮
GPS.Toolbar().append(button)

在按钮的On_Click功能中,我希望它能够打印当前文件的名称。

我写了print GPS.Current_Context().file() 但它确实有效并给我错误:Current_Context has no attribute file

任何人都知道为什么?

1 个答案:

答案 0 :(得分:1)

使用EditorBuffer获取当前视图的名称:

EditorBuffer.get().current_view().title()

这将为您提供当前编辑器选项卡的标题,该选项卡是已编辑文件的名称。