CoffeeChaton / vscode-autohotkey-NekoHelp

autoHotkey-1.1 IntelliSense, format, linters, in vscode https://marketplace.visualstudio.com/items?itemName=cat1122.vscode-autohotkey-neko-help

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] Signature help -> "never" show return block not working

alfredomtx opened this issue Β· comments

Steps to reproduce the behavior:

  1. Change this setting to never
    image
  2. Hover any class function
  3. See issue: it should not be showing the return block
    image

πŸ’» Code

class Test {
    hoverMe() {
        return "this should not be visible on hover"
    }
}

Test.hoverMe()

πŸ™ Actual behavior

With the setting set to never, it still shows every return keyword code inside the function when hovering it.

πŸ™‚ Expected behavior

When hovering the function with this setting set to never, no return code blocks would be shown.

Additional comments

I already reopened VS Code and restarted the PC after setting the setting to never and it seems to have no effect.

sign

signaturehelp

This option is for signatureHelp, triggered by (,) and moving position, not hover.

next version will provide new option of hover.

Ohh sorry! So there is no option currently to not show the return block of the function?

will be provided at this weekends

add new option "AhkNekoHelp.customize.HoverFuncShowReturnBlock"