Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update to JupyterLab 4.0.0a35#6757

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jtpio merged 14 commits intojupyter:mainfromjtpio:update-jupyterlab-alpha
Mar 7, 2023
Merged
Changes from1 commit
Commits
Show all changes
14 commits
Select commitHold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Enable the file size column by default
  • Loading branch information
@jtpio
jtpio committedMar 3, 2023
commit0577ae732085d43155cdff33be8ac13cf9503c0d
10 changes: 6 additions & 4 deletionspackages/tree-extension/src/index.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -252,14 +252,16 @@ const notebookTreeWidget: JupyterFrontEndPlugin<INotebookTree> = {
nbTreeWidget.tabBar.addTab(running.title);
}

// show checkboxes by default if there is no user setting override
// show checkboxesand file sizeby default if there is no user setting override
const settings = settingRegistry.load(FILE_BROWSER_PLUGIN_ID);
Promise.all([settings, app.restored])
.then(([settings]) => {
if (settings.user.showFileCheckboxes !== undefined) {
return;
if (settings.user.showFileCheckboxes === undefined) {
void settings.set('showFileCheckboxes', true);
}
if (settings.user.showFileSizeColumn === undefined) {
void settings.set('showFileSizeColumn', true);
}
void settings.set('showFileCheckboxes', true);
})
.catch((reason: Error) => {
console.error(reason.message);
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp