Mercurial Extension 没有/默认选项

发布于 2024-10-04 12:14:52 字数 313 浏览 1 评论 0原文

假设我想要一个可以按如下方式执行的扩展: hg sayhi

我尝试了以下操作,但它告诉我存在无效参数:

def sayhi(ui, repo, node, **opts):    
  """Says Hello"""
  ui.write("hi")

cmdtable = {                     
    "sayhi":  (sayhi, [], '')
}

似乎无论我做什么,我都需要给它一个选项就像hg sayhi s。 有办法做到这一点吗?

Say I want an extension that I can execute as follows: hg sayhi

I tried the following, but it tells me there are invalid arguments:

def sayhi(ui, repo, node, **opts):    
  """Says Hello"""
  ui.write("hi")

cmdtable = {                     
    "sayhi":  (sayhi, [], '')
}

It seems no matter what I do, I need to give it an option like hg sayhi s.
Is there anyway to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-10-11 12:14:52

好的,已修复。我从方法签名中删除了节点参数并且它起作用了。

Ok, got a fix. I removed the node parameter from the method signature and it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文