forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into save-cells-to-run-before-restart
- Loading branch information
Showing
135 changed files
with
5,118 additions
and
405 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
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
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,51 @@ | ||
.. Copyright (c) Jupyter Development Team. | ||
.. Distributed under the terms of the Modified BSD License. | ||
.. _completer: | ||
|
||
Completer | ||
========= | ||
|
||
Two completer implementations are available in JupyterLab: code completer for tab-completion, | ||
and inline completer for inline (as-you-type) suggestions. | ||
|
||
Both the code completer and inline completer can present completions from third-party | ||
providers when extensions with relevant (inline) completion providers are installed. | ||
|
||
Code completer widget | ||
--------------------- | ||
|
||
The code completer widget can be activated by pressing :kbd:`Tab` in a non-empty line of a code cell. | ||
|
||
To cycle completion candidates use: | ||
- :kbd:`Up`/:kbd:`Down` arrow keys or :kbd:`Tab`/:kbd:`Shift`+:kbd:`Shift` for cycling one item at a time | ||
- :kbd:`Page Up`/:kbd:`Page Down` keys for jumping over multiple items at once | ||
|
||
To accept the active completion candidate pressing :kbd:`Enter`, or click on it with your mouse/pointer. | ||
|
||
By default the completions will include the symbols ("tokens") from the current editor ("context"), | ||
and any suggestions returned by the active kernel in response to ``complete_request`` message. | ||
You may be able to improve the relevance of completion suggestions by adjusting the configuration | ||
of the kernel of your choice. | ||
|
||
Documentation panel | ||
^^^^^^^^^^^^^^^^^^^ | ||
|
||
The documentation panel presents additional information about the completion candidate. | ||
It can be enabled in Code Completer settings. By default this panel sends ``inspect_request`` | ||
to the active kernel and is therefore only available in notebooks and other documents | ||
with active session connected to a kernel that supports inspections. | ||
|
||
Inline completer | ||
---------------- | ||
|
||
JupyterLab 4.1+ includes an experimental inline completer, showing the suggestions | ||
as greyed out "ghost" text. Compared to the completer widget, the inline completer: | ||
|
||
- can present multi-line completions | ||
- is automatically invoked as you type | ||
- does not offer additional information such as type of documentation for the suggestions | ||
- can provide completions in both code and markdown cells (the default history provider only suggests in code cells) | ||
|
||
The inline completer is disabled by default and can be enabled in the Settings Editor | ||
by enabling the History Provider. |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ files | |
file_editor | ||
notebook | ||
code_console | ||
completer | ||
terminal | ||
running | ||
commands | ||
|
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
Binary file modified
BIN
+7 Bytes
(100%)
...test/documentation/general.test.ts-snapshots/jupyterlab-documentation-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.66 KB
(110%)
.../documentation/general.test.ts-snapshots/shortcuts-help-documentation-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
...est/galata/benchmarkReporter.spec.ts-snapshots/customized-test-galata-linux.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.