koro1FileHeader icon indicating copy to clipboard operation
koro1FileHeader copied to clipboard

vscode 更新版本 1.90.1后,方法注释不可用

Open Ena-Heleneto opened this issue 1 year ago • 5 comments

vscode 版本

版本: 1.90.1 (user setup) 提交: 611f9bfce64f25108829dd295f54a6894e87339d 日期: 2024-06-11T21:01:24.262Z Electron: 29.4.0 ElectronBuildId: 9593362 Chromium: 122.0.6261.156 Node.js: 20.9.0 V8: 12.2.281.27-electron.0 OS: Windows_NT x64 10.0.22631

config

"fileheader.customMade": { "Author": "git config user.name && git config user.email", "Date": "Do not edit", "LastEditors": "git config user.name && git config user.email", "LastEditTime": "Do not edit", "FilePath": "Do not edit", "Description": "", "custom_string_obkoro1_copyright": "Copyright (c) ${now_year} by git config user.name email: git config user.email, All Rights Reserved." },

Ena-Heleneto avatar Jun 14 '24 09:06 Ena-Heleneto

+1

flair0626 avatar Jun 17 '24 00:06 flair0626

+1 用了openark看了这个快捷键被win11 文件资源管理器占用了 image

AaronChuzb avatar Jun 18 '24 03:06 AaronChuzb

我暂时把快捷键改成ctrl+windows+U了,希望帮到后面来的兄弟们。 屏幕截图 2024-06-25 153221

y4n6 avatar Jun 25 '24 07:06 y4n6

确实是被占用了

cfx1999 avatar Aug 09 '24 06:08 cfx1999

extension.cursorTip 对应 函数注释 extension.fileheader 对应 头注释 extension.codeDesign 对应 图案注释

keybindings.json 中,添加以下内容即可

[
    {
        "key": "ctrl+win+z",
        "command": "extension.cursorTip",
        "when": "editorTextFocus"
    },
]

nonlz avatar Aug 22 '24 07:08 nonlz