如何将参数传递给 sublime_plugin.WindowCommand 的实例?
How to pass args to an instance of sublime_plugin.WindowCommand?
我为sublime text 3创建了一个插件,设计的CommandPalette.sublime-commands如下:
[
{
"caption": "Function 1",
"args": {parameter:"y"},
"command": "generalfunc"
},
{
"caption": "Function 2",
"args": {parameter:"n"},
"command": "generalfunc"
}
]
实际上,我想将参数传递给下面的 sublime_plugin 实例:
class GeneralFuncCommand(sublime_plugin.WindowCommand):
def __init__(self, parameter=None):
self.parameter = parameter
super(GeneralFuncCommand, self).__init__()
def run(self):
if self.parameter =='y':
do something
elif self.parameter =='n':
do something else
else:
pass
将参数传递给 GeneralFuncCommand class 的正确方法是什么?提前致谢。
我是 plugin/python 新手,但我将一些适合我的东西放在一起。
“**args”似乎是 "def" 行中的关键。似乎是通过 args['myparamnamehere'] 语法使所有其他参数可用的通配符。我已经看到其他脚本将参数命名为“**kwargs”,所以也许您可以 google 以获取更多示例(我找到了大量示例,但没有关于它的方式或原因的文档)。可能有更好的方法,但这是我在自己的项目上工作几个小时后发现的所有方法,所以我坚持使用它。
class dgReplaceLibCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
if (args['replaceSet'] == "CFML to cfScript"):
self.cfml_to_cfscript(edit)
我猜你的 def 行需要看起来像这样...
def __init__(self, **args):
然后您将像这样访问您的参数(再次猜测)...
self.parameter = args['parameter']
此外,您可能需要在配置中将键 "parameter" 括起来。我在没有引用的例子中没有看到太多。即...
"args": {"parameter":"y"},
希望对您有所帮助!
我为sublime text 3创建了一个插件,设计的CommandPalette.sublime-commands如下:
[
{
"caption": "Function 1",
"args": {parameter:"y"},
"command": "generalfunc"
},
{
"caption": "Function 2",
"args": {parameter:"n"},
"command": "generalfunc"
}
]
实际上,我想将参数传递给下面的 sublime_plugin 实例:
class GeneralFuncCommand(sublime_plugin.WindowCommand):
def __init__(self, parameter=None):
self.parameter = parameter
super(GeneralFuncCommand, self).__init__()
def run(self):
if self.parameter =='y':
do something
elif self.parameter =='n':
do something else
else:
pass
将参数传递给 GeneralFuncCommand class 的正确方法是什么?提前致谢。
我是 plugin/python 新手,但我将一些适合我的东西放在一起。
“**args”似乎是 "def" 行中的关键。似乎是通过 args['myparamnamehere'] 语法使所有其他参数可用的通配符。我已经看到其他脚本将参数命名为“**kwargs”,所以也许您可以 google 以获取更多示例(我找到了大量示例,但没有关于它的方式或原因的文档)。可能有更好的方法,但这是我在自己的项目上工作几个小时后发现的所有方法,所以我坚持使用它。
class dgReplaceLibCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
if (args['replaceSet'] == "CFML to cfScript"):
self.cfml_to_cfscript(edit)
我猜你的 def 行需要看起来像这样...
def __init__(self, **args):
然后您将像这样访问您的参数(再次猜测)...
self.parameter = args['parameter']
此外,您可能需要在配置中将键 "parameter" 括起来。我在没有引用的例子中没有看到太多。即...
"args": {"parameter":"y"},
希望对您有所帮助!