在package.json做如下配置:
"contributes": {
"commands": [
{
"command": "codeStat.countCurFile",
"title": "统计当前文件"
}
],
"menus": {
"editor/title": [
{
"command": "codeStat.countCurFile",
"group": "navigation"
}
]
}
}
这样就可以在编辑栏的右上角增加对应的菜单项了: