123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- {
- "jupyter.lab.setting-icon": "ui-components:folder",
- "jupyter.lab.setting-icon-label": "File Browser",
- "jupyter.lab.menus": {
- "main": [
- {
- "id": "jp-mainmenu-file",
- "items": [
- {
- "command": "filebrowser:create-main-launcher",
- "rank": 1
- },
- {
- "type": "separator",
- "rank": 1
- },
- {
- "command": "filebrowser:open-path",
- "rank": 1
- },
- {
- "command": "filebrowser:open-url",
- "rank": 1
- }
- ]
- },
- {
- "id": "jp-mainmenu-view",
- "items": [
- {
- "command": "filebrowser:toggle-hidden-files",
- "rank": 9.95
- }
- ]
- },
- {
- "id": "jp-mainmenu-settings",
- "items": [
- {
- "type": "separator",
- "rank": 5
- },
- {
- "command": "filebrowser:toggle-navigate-to-current-directory",
- "rank": 5
- },
- {
- "type": "separator",
- "rank": 5
- }
- ]
- }
- ],
- "context": [
- {
- "type": "separator",
- "selector": ".jp-DirListing-content",
- "rank": 0
- },
- {
- "command": "filebrowser:open",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 1
- },
- {
- "type": "separator",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 4
- },
- {
- "command": "filebrowser:rename",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 5
- },
- {
- "command": "filebrowser:delete",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 6
- },
- {
- "command": "filebrowser:cut",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 7
- },
- {
- "command": "filebrowser:copy",
- "selector": ".jp-DirListing-item[data-isdir=\"false\"]",
- "rank": 8
- },
- {
- "command": "filebrowser:paste",
- "selector": ".jp-DirListing-content",
- "rank": 8.5
- },
- {
- "command": "filebrowser:duplicate",
- "selector": ".jp-DirListing-item[data-isdir=\"false\"]",
- "rank": 9
- },
- {
- "type": "separator",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 10
- },
- {
- "command": "filebrowser:shutdown",
- "selector": ".jp-DirListing-item[data-isdir=\"false\"]",
- "rank": 11
- },
- {
- "type": "separator",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 12
- },
- {
- "command": "filebrowser:copy-path",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 14
- },
- {
- "command": "filebrowser:toggle-last-modified",
- "selector": ".jp-DirListing-header",
- "rank": 14
- },
- {
- "command": "filebrowser:share-main",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 15
- },
- {
- "type": "separator",
- "selector": ".jp-DirListing-item[data-isdir]",
- "rank": 50
- },
- {
- "command": "filebrowser:create-new-file",
- "selector": ".jp-DirListing-content",
- "rank": 51
- },
- {
- "command": "filebrowser:create-new-directory",
- "selector": ".jp-DirListing-content",
- "rank": 55
- }
- ]
- },
- "title": "File Browser",
- "description": "File Browser settings.",
- "jupyter.lab.shortcuts": [
- {
- "command": "filebrowser:create-main-launcher",
- "keys": ["Accel Shift L"],
- "selector": "body"
- },
- {
- "command": "filebrowser:toggle-main",
- "keys": ["Accel Shift F"],
- "selector": "body"
- },
- {
- "command": "filebrowser:go-up",
- "keys": ["Backspace"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:delete",
- "keys": ["Delete"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:cut",
- "keys": ["Accel X"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:copy",
- "keys": ["Accel C"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:paste",
- "keys": ["Accel V"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:rename",
- "keys": ["F2"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- },
- {
- "command": "filebrowser:duplicate",
- "keys": ["Accel D"],
- "selector": ".jp-DirListing-content .jp-DirListing-itemText"
- }
- ],
- "properties": {
- "navigateToCurrentDirectory": {
- "type": "boolean",
- "title": "Navigate to current directory",
- "description": "Whether to automatically navigate to a document's current directory",
- "default": false
- },
- "useFuzzyFilter": {
- "type": "boolean",
- "title": "Filter on file name with a fuzzy search",
- "description": "Whether to apply fuzzy algorithm while filtering on file names",
- "default": true
- },
- "showLastModifiedColumn": {
- "type": "boolean",
- "title": "Show last modified column",
- "description": "Whether to show the last modified column",
- "default": true
- },
- "showHiddenFiles": {
- "type": "boolean",
- "title": "Show hidden files",
- "description": "Whether to show hidden files",
- "default": false
- }
- },
- "additionalProperties": false,
- "type": "object"
- }
|