1

你知道如何使用 WarpScript 将宏从 Github 导入 Warp10 吗?

[ 'https://github.com/miton18/test-ws/blob/master' ] WF.SETREPOS

WF.GETREPOS

'miton18/test-ws' 'me' IMPORT

[ NEWGTS ] @me/renameWithLabel

renameWithLabel.mc2Git 上的内容:

<% DROP DUP LABELS $label GET RENAME %> LMAP
4

3 回答 3

1

如此处所述:https ://blog.senx.io/share-your-warpscript-macros/

'https://raw.githubusercontent.com/miton18/test-ws/master'  WF.ADDREPO
WF.GETREPOS // check...
[] @utils/renameWithLabel

您的宏必须在子文件夹中;)

但对于私人仓库,请尝试https://user:pass@xxxx或修改 Warp 10 配置。

于 2019-11-07T16:37:38.677 回答
1

实际上,您总是需要一个子目录(因为每个宏存储库,甚至是macrosWarp 10 出口的目录)

如果宏的完整路径包含许多子目录,则IMPORT很有用。

'https://raw.githubusercontent.com/pi-r-p/warpscript/master' WF.ADDREPO
'viz' 'a' IMPORT  
[] @a/juxtaposeGTS  //now I can call a instead of viz.

可播放的warpscript在这里。

于 2019-11-07T16:52:00.533 回答
0

您可以使用https://github.com/senx/WarpFleetSynchronizer ;) 您将能够使用 git repos 同步部署私有 WarpFleet 解析器。

于 2020-02-21T13:01:56.873 回答