如何在 Monaco Editor Command Palette 中以编程方式触发转到行号操作?
How to trigger go to line number action programmatically in Monaco Editor Command Palette?
我知道我可以通过 this way:
以编程方式触发命令面板
editor.trigger('anyString', 'editor.action.quickCommand')
但是我如何以编程方式触发“转到行号”操作,它的相关快捷键是 Ctrl + G
?
无意中测试发现解决方法:
editor.focus()
editor.trigger('whatever', 'editor.action.gotoLine')
我知道我可以通过 this way:
以编程方式触发命令面板editor.trigger('anyString', 'editor.action.quickCommand')
但是我如何以编程方式触发“转到行号”操作,它的相关快捷键是 Ctrl + G
?
无意中测试发现解决方法:
editor.focus()
editor.trigger('whatever', 'editor.action.gotoLine')