├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── breadcrumbs.png ├── folder-note.png ├── manifest.json ├── ophidian.config.mjs ├── package.json ├── pnpm-lock.yaml ├── quick-explorer.png ├── quick-preview.png ├── rollup.config.js ├── src ├── ContextMenu.ts ├── Explorer.tsx ├── FolderMenu.ts ├── file-info.ts ├── menus.ts ├── obsidian.ts ├── quick-explorer.tsx ├── redom-jsx.ts └── styles.scss ├── tsconfig.json └── versions.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/README.md -------------------------------------------------------------------------------- /breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/breadcrumbs.png -------------------------------------------------------------------------------- /folder-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/folder-note.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/manifest.json -------------------------------------------------------------------------------- /ophidian.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/ophidian.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /quick-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/quick-explorer.png -------------------------------------------------------------------------------- /quick-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/quick-preview.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/ContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/ContextMenu.ts -------------------------------------------------------------------------------- /src/Explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/Explorer.tsx -------------------------------------------------------------------------------- /src/FolderMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/FolderMenu.ts -------------------------------------------------------------------------------- /src/file-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/file-info.ts -------------------------------------------------------------------------------- /src/menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/menus.ts -------------------------------------------------------------------------------- /src/obsidian.ts: -------------------------------------------------------------------------------- 1 | export * from "obsidian"; -------------------------------------------------------------------------------- /src/quick-explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/quick-explorer.tsx -------------------------------------------------------------------------------- /src/redom-jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/redom-jsx.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjeby/quick-explorer/HEAD/versions.json --------------------------------------------------------------------------------