Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tab character ignored in signatureHelpTriggerCharacters #658

Closed
rsbondi opened this issue Dec 4, 2017 · 2 comments
Closed

Tab character ignored in signatureHelpTriggerCharacters #658

rsbondi opened this issue Dec 4, 2017 · 2 comments
Labels
editor-parameter-hints feature-request Request for new features or functionality out-of-scope
Milestone

Comments

@rsbondi
Copy link

rsbondi commented Dec 4, 2017

monaco-editor version: 0.10.1
Browser: chrome/electron
OS: W10
Steps or JS usage snippet reproducing the issue:

monaco.languages.register({id:'mine'})
monaco.languages.registerSignatureHelpProvider('mine', {
    provideSignatureHelp: function (model, position) {
         return {
            activeSignature: 0,
            activeParameter: 0,
            signatures: [{label: 'handler triggered', parameters: [{label: 'triggered', documentation: 'tab not working'}]}]
          }
     },
    signatureHelpTriggerCharacters:[' ', '\t', '\n']
})
monaco.editor.create(document.getElementById("container"), {
	value: "something",
	language: "mine"
});

space and enter work, tab does not

@alexdima alexdima added the feature-request Request for new features or functionality label Feb 5, 2018
@alexdima alexdima added this to the On Deck milestone Feb 5, 2018
@alexdima
Copy link
Member

Tab is not programmed to do anything at this point when having parameter hints.

@hediet
Copy link
Member

hediet commented Feb 16, 2023

We closed this issue because we don't plan to address it in the foreseeable future. If you disagree and feel that this issue is crucial: we are happy to listen and to reconsider.

If you wonder what we are up to, please see our roadmap and issue reporting guidelines.

Thanks for your understanding, and happy coding!

@hediet hediet closed this as not planned Won't fix, can't repro, duplicate, stale Feb 16, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Apr 2, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
editor-parameter-hints feature-request Request for new features or functionality out-of-scope
Projects
None yet
Development

No branches or pull requests

3 participants