-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #671 from jupyter-lsp/improve-signature
Make signature persist, highlight active parameter, show on top
- Loading branch information
Showing
24 changed files
with
744 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"jupyter.lab.setting-icon": "lsp:hover", | ||
"jupyter.lab.setting-icon-label": "Language integration", | ||
"title": "Code Signature", | ||
"description": "LSP Code Signature Help settings.", | ||
"type": "object", | ||
"properties": { | ||
"closeCharacters": { | ||
"title": "Close characters", | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"default": [")", ";"], | ||
"description": "An array of characters which should close the signature help. The signature help may be shown again after typing a character from this list if the server requests it to open." | ||
}, | ||
"maxLines": { | ||
"title": "Number of lines to show without collapsing", | ||
"type": "number", | ||
"default": 12, | ||
"description": "The number of documentation lines to show without collapsing into the details section." | ||
} | ||
}, | ||
"jupyter.lab.shortcuts": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.