如何在VS代码扩展中按行数折叠?



我正试图为需要折叠特定单元格的vs代码创建简单的扩展

我找到了这个选项

vscode.commands.executeCommand('editor.fold', fold={levels: 1, selectionLines: lines});

但是我不知道如何设置它来折叠一行(单元格的开始)如何创建selectionLines参数?(或者更好的解决方案)[有一些扩展使用编辑器。foldLevels,编辑器。我找不到它的文档]

api:https://code.visualstudio.com/api/references/commands

解决了!

你需要做的是:

vscode.commands.executeCommand('editor.fold', {selectionLines: [lineNumber]});

相关内容

  • 没有找到相关文章

最新更新