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

No signature help in interactive #183873

Closed
r3m0t opened this issue May 30, 2023 · 0 comments
Closed

No signature help in interactive #183873

r3m0t opened this issue May 30, 2023 · 0 comments
Assignees
Labels
insiders-released Patch has been released in VS Code Insiders
Milestone

Comments

@r3m0t
Copy link
Contributor

r3m0t commented May 30, 2023

Does this issue occur when all extensions are disabled?: N/A

  • VS Code Version: Version: 1.78.2
    Commit: b3e4e68
    Date: 2023-05-10T14:39:26.248Z
    Browser: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Code/1.78.2 Chrome/108.0.5359.215 Electron/22.5.2 Safari/537.36

Steps to Reproduce:

  1. Install Jupyter extension
  2. Make a dummy extension and install it:
export function activate(context: vscode.ExtensionContext) {
		context.subscriptions.push(
			vscode.languages.registerSignatureHelpProvider('python', {
				provideSignatureHelp(document, position, token, context) {
					return {activeParameter: 0, activeSignature: 0, 
					signatures: [{
						label: "foo",
						parameters: [{label: "v"}],
						documentation: "aaaa",
					}]};
				},
			}, {triggerCharacters: ["("], retriggerCharacters: [","]}));
		}
	"activationEvents": [
		"onLanguage:python"
	],
  1. Create Interactive Window
  2. Enter import datetime; datetime.date(
  3. Nothing shows up
  4. Press Ctrl+Shift+Space
  5. Nothing shows up
  6. The signature help works on new .py files though, just not in the interactive.
@amunger amunger closed this as completed in 1d5142a Jun 9, 2023
amunger added a commit that referenced this issue Jun 9, 2023
Add signature help in the interactive (fixes #183873)
@VSCodeTriageBot VSCodeTriageBot added the unreleased Patch has not yet been released in VS Code Insiders label Jun 9, 2023
@VSCodeTriageBot VSCodeTriageBot added this to the June 2023 milestone Jun 9, 2023
@VSCodeTriageBot VSCodeTriageBot added insiders-released Patch has been released in VS Code Insiders and removed unreleased Patch has not yet been released in VS Code Insiders labels Jun 9, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Jul 24, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
insiders-released Patch has been released in VS Code Insiders
Projects
None yet
Development

No branches or pull requests

3 participants