GNAT GPS:添加自定义命令
GNAT GPS: Add a custom command
我想知道是否可以向 GNAT Programming Studio (GPS) 添加自定义命令?
如果调用自定义命令(通过菜单栏中的按钮或键盘快捷键),则应使用打开文件的 full/absolute 路径调用外部 Python 脚本,并且在编辑器中选择。
这是一个可能会提供一些指导的快速而简单的脚本。我在 Linux 上测试过它,但它应该也适用于 Windows。更改接近尾声的操作以调用您喜欢的脚本。要实际使用它,您必须将它放在(隐藏的).gps/plug-ins
目录中,该目录可以在您的主目录中找到。可以从源代码中的上下文菜单调用实际操作 window.
run_my_script.py
"""Run Python Script
This plug-in executes a python script.
"""
###########################################################################
# No user customization below this line
###########################################################################
import os, sys
import GPS
from gps_utils import interactive
def __contextualMenuFilter(context):
# Check if the context is generated by the source editor
if not (context.module_name == "Source_Editor"):
return False
# If all OK, show the menu item in the context menu.
return True
def __contextualMenuLabel(context):
# Get current buffer
name = context.file().name()
basename = os.path.basename(name)
# Name of the menu item.
return "Run Python script for <b>{}</b>".format(basename)
@interactive(
name ="Run Python script",
contextual = __contextualMenuLabel,
filter = __contextualMenuFilter)
def on_activate():
# If modified, then save before proceeding.
eb = GPS.EditorBuffer.get()
if eb.is_modified:
eb.save()
# Run the action (defined below).
GPS.execute_action("my_script")
GPS.parse_xml ("""
<action name="my_script">
<external output="Output of my_script">python3 /home/deedee/my_script.py %F</external>
</action>""")
my_script.py(一些测试脚本)
import sys
print ("Running script {0} for {1}".format(sys.argv[0], sys.argv[1]));
输出(在 GPS 中显示在名为 "Output of my_script" 的新选项卡上)
python3 /home/deedee/my_script.py /home/deedee/example/src/main.adb
Running script /home/deedee/my_script.py for /home/deedee/example/src/main.adb
GNAT Studio(以前称为 GPS)文档中的一些相关信息:
我想知道是否可以向 GNAT Programming Studio (GPS) 添加自定义命令?
如果调用自定义命令(通过菜单栏中的按钮或键盘快捷键),则应使用打开文件的 full/absolute 路径调用外部 Python 脚本,并且在编辑器中选择。
这是一个可能会提供一些指导的快速而简单的脚本。我在 Linux 上测试过它,但它应该也适用于 Windows。更改接近尾声的操作以调用您喜欢的脚本。要实际使用它,您必须将它放在(隐藏的).gps/plug-ins
目录中,该目录可以在您的主目录中找到。可以从源代码中的上下文菜单调用实际操作 window.
run_my_script.py
"""Run Python Script
This plug-in executes a python script.
"""
###########################################################################
# No user customization below this line
###########################################################################
import os, sys
import GPS
from gps_utils import interactive
def __contextualMenuFilter(context):
# Check if the context is generated by the source editor
if not (context.module_name == "Source_Editor"):
return False
# If all OK, show the menu item in the context menu.
return True
def __contextualMenuLabel(context):
# Get current buffer
name = context.file().name()
basename = os.path.basename(name)
# Name of the menu item.
return "Run Python script for <b>{}</b>".format(basename)
@interactive(
name ="Run Python script",
contextual = __contextualMenuLabel,
filter = __contextualMenuFilter)
def on_activate():
# If modified, then save before proceeding.
eb = GPS.EditorBuffer.get()
if eb.is_modified:
eb.save()
# Run the action (defined below).
GPS.execute_action("my_script")
GPS.parse_xml ("""
<action name="my_script">
<external output="Output of my_script">python3 /home/deedee/my_script.py %F</external>
</action>""")
my_script.py(一些测试脚本)
import sys
print ("Running script {0} for {1}".format(sys.argv[0], sys.argv[1]));
输出(在 GPS 中显示在名为 "Output of my_script" 的新选项卡上)
python3 /home/deedee/my_script.py /home/deedee/example/src/main.adb
Running script /home/deedee/my_script.py for /home/deedee/example/src/main.adb
GNAT Studio(以前称为 GPS)文档中的一些相关信息: