Visual Studio 在可视代码中插入包含宏的新行

zqdjd7g9  于 2023-03-31  发布在  其他
关注(0)|答案(2)|浏览(128)

根据您正在使用的代码,设备上的React Native Hot Reload并不总是正常工作,因此我们必须重新加载应用程序。
因此,我正在编写一个代码片段来重新加载我的Android设备,我总是在Visual Code上保存文件,就像RN热重新加载一样。
I've seen this question that helped me
我的怀疑是:如何在脚本中添加命令以添加新行?类似于:editor.action.insertNewLine
观察:我找不到这方面的参考资料,如果你有一个建议,我感谢。

"macros": {
    "runCommandInTerminal": [
        {
            "command": "cursorMove",
            "args": {
                "to": "wrappedLineEnd",
            }
        },
        "editor.action.insertNewLine",// command to add new line here
        {
            "command": "type",
            "args": {
                "text": "adb shell input text \"RR\" "
            }
        },
        {
            "command": "cursorMove",
            "args": {
                "to": "wrappedLineStart",
                "by": "wrappedLine",
                "value": 1,
                "select": true
            }
        },
        "workbench.action.terminal.runSelectedText",
        "editor.action.clipboardCutAction",
        "workbench.action.files.save",
    ],
}
idv4meu8

idv4meu81#

在搜索和阅读参考文献后,我找到了一个解决方案。如果有人感兴趣,它在我的GitHub上:
https://github.com/LucasMMota/hackings/blob/master/visual-code.md

wqnecbli

wqnecbli2#

就是这里了

"editor.action.insertLineAfter"

多亏了卢卡斯

相关问题