简体   繁体   中英

How to know if the markdown preview is focused using contributes commands - VSCode Extension API

I'm looking for something similar to "when": "markdownPreviewFocus" which is mentioned in vscode package.json . unfortunately, when I try it shows that markdownPreviewFocus is not supported in when condition.

"editor/title": [
    {
        "command": "extension.my_command",
        "when": "markdownPreviewFocus==false",
        "group": "navigation"
    }
]

尝试:

`"when": "!markdownPreviewFocus"`

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM