├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE.md ├── README.md ├── locale ├── ar.json ├── cz.json ├── da.json ├── de.json ├── en-gb.json ├── en.json ├── es.json ├── fr.json ├── hi.json ├── id.json ├── it.json ├── ja.json ├── ko.json ├── nl.json ├── no.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── tr.json ├── zh-cn.json └── zh-tw.json ├── manifest.json ├── package.json ├── scripts ├── esbuild.config.mjs ├── update-icon-list.mjs └── version-bump.mjs ├── src ├── assets │ ├── commander-logo-christmas.svg │ ├── commander-logo-halloween.svg │ └── commander-logo.svg ├── constants.ts ├── custom.d.ts ├── l10n.ts ├── main.ts ├── manager │ └── commands │ │ ├── commandManager.ts │ │ ├── explorerManager.ts │ │ ├── index.ts │ │ ├── leftRibbonManager.ts │ │ ├── menuManager.ts │ │ ├── pageHeaderManager.ts │ │ ├── statusBarManager.ts │ │ └── titleBarManager.ts ├── styles │ ├── advanced-toolbar.scss │ └── styles.scss ├── types.ts ├── ui │ ├── addCommandModal.ts │ ├── chooseCustomNameModal.ts │ ├── chooseIconModal.ts │ ├── components │ │ ├── About.tsx │ │ ├── Accordion.tsx │ │ ├── AdvancedToolbarSettings.tsx │ │ ├── ChangeableText.tsx │ │ ├── ColorPicker │ │ │ ├── ColorPicker.tsx │ │ │ └── index.ts │ │ ├── Credits.tsx │ │ ├── Logo.tsx │ │ ├── MacroBuilder.tsx │ │ ├── MacroBuilderModal.ts │ │ ├── MacroViewer.tsx │ │ ├── commandComponent.tsx │ │ ├── commandViewerComponent.tsx │ │ ├── confirmDeleteComponent.tsx │ │ ├── hidingViewer.tsx │ │ ├── mobileModifyComponent.tsx │ │ ├── settingComponent.tsx │ │ └── settingTabComponent.tsx │ ├── confirmDeleteModal.ts │ ├── icons.ts │ ├── mobileModifyModal.ts │ ├── settingTab.ts │ └── settingTabModal.ts └── util.tsx ├── tailwind.config.js ├── tsconfig.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build 3 | scripts/ 4 | main.js 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/README.md -------------------------------------------------------------------------------- /locale/ar.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/cz.json -------------------------------------------------------------------------------- /locale/da.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/de.json -------------------------------------------------------------------------------- /locale/en-gb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/en.json -------------------------------------------------------------------------------- /locale/es.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/fr.json -------------------------------------------------------------------------------- /locale/hi.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/id.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/it.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/ja.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/ko.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/nl.json -------------------------------------------------------------------------------- /locale/no.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/pt-br.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/pt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/ro.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/ru.json -------------------------------------------------------------------------------- /locale/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /locale/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/locale/zh-cn.json -------------------------------------------------------------------------------- /locale/zh-tw.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/package.json -------------------------------------------------------------------------------- /scripts/esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/scripts/esbuild.config.mjs -------------------------------------------------------------------------------- /scripts/update-icon-list.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/scripts/update-icon-list.mjs -------------------------------------------------------------------------------- /scripts/version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/scripts/version-bump.mjs -------------------------------------------------------------------------------- /src/assets/commander-logo-christmas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/assets/commander-logo-christmas.svg -------------------------------------------------------------------------------- /src/assets/commander-logo-halloween.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/assets/commander-logo-halloween.svg -------------------------------------------------------------------------------- /src/assets/commander-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/assets/commander-logo.svg -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/custom.d.ts -------------------------------------------------------------------------------- /src/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/l10n.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manager/commands/commandManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/commandManager.ts -------------------------------------------------------------------------------- /src/manager/commands/explorerManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/explorerManager.ts -------------------------------------------------------------------------------- /src/manager/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/index.ts -------------------------------------------------------------------------------- /src/manager/commands/leftRibbonManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/leftRibbonManager.ts -------------------------------------------------------------------------------- /src/manager/commands/menuManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/menuManager.ts -------------------------------------------------------------------------------- /src/manager/commands/pageHeaderManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/pageHeaderManager.ts -------------------------------------------------------------------------------- /src/manager/commands/statusBarManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/statusBarManager.ts -------------------------------------------------------------------------------- /src/manager/commands/titleBarManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/manager/commands/titleBarManager.ts -------------------------------------------------------------------------------- /src/styles/advanced-toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/styles/advanced-toolbar.scss -------------------------------------------------------------------------------- /src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/styles/styles.scss -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui/addCommandModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/addCommandModal.ts -------------------------------------------------------------------------------- /src/ui/chooseCustomNameModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/chooseCustomNameModal.ts -------------------------------------------------------------------------------- /src/ui/chooseIconModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/chooseIconModal.ts -------------------------------------------------------------------------------- /src/ui/components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/About.tsx -------------------------------------------------------------------------------- /src/ui/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/Accordion.tsx -------------------------------------------------------------------------------- /src/ui/components/AdvancedToolbarSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/AdvancedToolbarSettings.tsx -------------------------------------------------------------------------------- /src/ui/components/ChangeableText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/ChangeableText.tsx -------------------------------------------------------------------------------- /src/ui/components/ColorPicker/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/ColorPicker/ColorPicker.tsx -------------------------------------------------------------------------------- /src/ui/components/ColorPicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ColorPicker"; 2 | -------------------------------------------------------------------------------- /src/ui/components/Credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/Credits.tsx -------------------------------------------------------------------------------- /src/ui/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/Logo.tsx -------------------------------------------------------------------------------- /src/ui/components/MacroBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/MacroBuilder.tsx -------------------------------------------------------------------------------- /src/ui/components/MacroBuilderModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/MacroBuilderModal.ts -------------------------------------------------------------------------------- /src/ui/components/MacroViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/MacroViewer.tsx -------------------------------------------------------------------------------- /src/ui/components/commandComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/commandComponent.tsx -------------------------------------------------------------------------------- /src/ui/components/commandViewerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/commandViewerComponent.tsx -------------------------------------------------------------------------------- /src/ui/components/confirmDeleteComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/confirmDeleteComponent.tsx -------------------------------------------------------------------------------- /src/ui/components/hidingViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/hidingViewer.tsx -------------------------------------------------------------------------------- /src/ui/components/mobileModifyComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/mobileModifyComponent.tsx -------------------------------------------------------------------------------- /src/ui/components/settingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/settingComponent.tsx -------------------------------------------------------------------------------- /src/ui/components/settingTabComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/components/settingTabComponent.tsx -------------------------------------------------------------------------------- /src/ui/confirmDeleteModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/confirmDeleteModal.ts -------------------------------------------------------------------------------- /src/ui/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/icons.ts -------------------------------------------------------------------------------- /src/ui/mobileModifyModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/mobileModifyModal.ts -------------------------------------------------------------------------------- /src/ui/settingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/settingTab.ts -------------------------------------------------------------------------------- /src/ui/settingTabModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/ui/settingTabModal.ts -------------------------------------------------------------------------------- /src/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/src/util.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phibr0/obsidian-commander/HEAD/versions.json --------------------------------------------------------------------------------