├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── config.yml └── workflows │ └── release.yml ├── .gitignore ├── .markdownlint.yaml ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── docs ├── api-reference.md ├── rendering-architecture.md ├── scroll-orchestration.md ├── service-architecture.md ├── startup-process.md ├── storage-architecture.md └── theming-guide.md ├── esbuild.config.mjs ├── eslint.config.mjs ├── icon-assets ├── README.md ├── bootstrap-icons │ ├── 1.13.1 │ │ ├── bootstrap-icons.json │ │ └── bootstrap-icons.woff2 │ ├── bootstrap-icons.json │ ├── bootstrap-icons.woff2 │ └── latest.json ├── fontawesome │ ├── 6.6.0 │ │ ├── fa-solid-900.woff2 │ │ └── icons-solid.json │ ├── fa-solid-900.woff2 │ ├── icons-solid.json │ └── latest.json ├── material-icons │ ├── 140 │ │ ├── MaterialIcons-Regular.woff2 │ │ └── icons.json │ ├── MaterialIcons-Regular.woff2 │ ├── icons.json │ └── latest.json ├── phosphor │ ├── 2.1.1 │ │ ├── icons.json │ │ └── phosphor-regular.woff2 │ ├── icons.json │ ├── latest.json │ └── phosphor-regular.woff2 ├── rpg-awesome │ ├── 0.2.0 │ │ ├── icons.json │ │ └── rpgawesome-webfont.woff │ ├── icons.json │ ├── latest.json │ └── rpgawesome-webfont.woff ├── scripts │ ├── config │ │ ├── bootstrap-icons.ts │ │ ├── fontawesome.ts │ │ ├── material-icons.ts │ │ ├── phosphor.ts │ │ ├── rpg-awesome.ts │ │ └── simple-icons.ts │ ├── shared.ts │ └── update-icon-packs.ts └── simple-icons │ ├── 15.16.0 │ ├── SimpleIcons.woff2 │ └── simple-icons.json │ ├── SimpleIcons.woff2 │ ├── latest.json │ └── simple-icons.json ├── images ├── banner.gif ├── banner.png ├── listpane.png ├── navpane.png └── notebook-navigator.png ├── knip.json ├── manifest.json ├── package.json ├── scripts ├── README.md ├── build.sh ├── check-unused-css.sh ├── gitdump.sh ├── mdReleaseNotes.js ├── release.js └── update-icon-packs.sh ├── src ├── api │ ├── NotebookNavigatorAPI.ts │ ├── modules │ │ ├── MetadataAPI.ts │ │ ├── NavigationAPI.ts │ │ └── SelectionAPI.ts │ ├── public │ │ ├── README.md │ │ └── notebook-navigator.d.ts │ ├── types.ts │ └── version.ts ├── components │ ├── FileItem.tsx │ ├── FolderItem.tsx │ ├── ListPane.tsx │ ├── ListPaneAppearanceMenu.tsx │ ├── ListPaneHeader.tsx │ ├── ListPaneTitleArea.tsx │ ├── ListToolbar.tsx │ ├── NavigationBanner.tsx │ ├── NavigationListRow.tsx │ ├── NavigationPane.tsx │ ├── NavigationPaneHeader.tsx │ ├── NavigationRootReorderPanel.tsx │ ├── NavigationToolbar.tsx │ ├── NotebookNavigatorComponent.tsx │ ├── NotebookNavigatorContainer.tsx │ ├── ObsidianIcon.tsx │ ├── RootFolderReorderItem.tsx │ ├── SearchInput.tsx │ ├── ShortcutItem.tsx │ ├── SkeletonView.tsx │ ├── TagTreeItem.tsx │ ├── UpdateNoticeBanner.tsx │ ├── UpdateNoticeIndicator.tsx │ └── VirtualFolderItem.tsx ├── constants │ ├── colorPalette.ts │ ├── pluginIds.ts │ ├── surfaceColorMappings.ts │ └── updateNotice.ts ├── context │ ├── ExpansionContext.tsx │ ├── RecentDataContext.tsx │ ├── SelectionContext.tsx │ ├── ServicesContext.tsx │ ├── SettingsContext.tsx │ ├── ShortcutsContext.tsx │ ├── StorageContext.tsx │ ├── UIStateContext.tsx │ └── UXPreferencesContext.tsx ├── hooks │ ├── useAutoDismissFade.ts │ ├── useContextMenu.ts │ ├── useDragAndDrop.ts │ ├── useDragNavigationPaneActivation.ts │ ├── useFileOpener.ts │ ├── useKeyboardNavigation.ts │ ├── useListActions.ts │ ├── useListPaneAppearance.ts │ ├── useListPaneData.ts │ ├── useListPaneKeyboard.ts │ ├── useListPaneScroll.ts │ ├── useListPaneTitle.ts │ ├── useMultiSelection.ts │ ├── useNavigationActions.ts │ ├── useNavigationPaneData.ts │ ├── useNavigationPaneKeyboard.ts │ ├── useNavigationPaneScroll.ts │ ├── useNavigationRootReorder.tsx │ ├── useNavigatorEventHandlers.ts │ ├── useNavigatorReveal.ts │ ├── useNavigatorScale.ts │ ├── useResizablePane.ts │ ├── useRootFolderOrder.ts │ ├── useRootTagOrder.ts │ ├── useSurfaceColorVariables.ts │ ├── useSwipeGesture.ts │ ├── useTagNavigation.ts │ └── useUpdateNotice.ts ├── i18n │ ├── index.ts │ └── locales │ │ ├── ar.ts │ │ ├── de.ts │ │ ├── en.ts │ │ ├── es.ts │ │ ├── fa.ts │ │ ├── fr.ts │ │ ├── id.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ko.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt.ts │ │ ├── pt_br.ts │ │ ├── ru.ts │ │ ├── th.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── vi.ts │ │ ├── zh_cn.ts │ │ └── zh_tw.ts ├── interfaces │ ├── IContentProvider.ts │ ├── ISettingsProvider.ts │ └── ITagTreeProvider.ts ├── main.ts ├── modals │ ├── BaseSuggestModal.ts │ ├── ColorPickerModal.ts │ ├── ConfirmModal.ts │ ├── EditVaultProfilesModal.ts │ ├── FolderNoteTypeModal.ts │ ├── FolderSuggestModal.ts │ ├── HomepageModal.ts │ ├── IconPickerModal.ts │ ├── InputModal.ts │ ├── NavigationBannerModal.ts │ ├── RemoveTagModal.ts │ ├── SaveSearchShortcutModal.ts │ ├── SelectVaultProfileModal.ts │ ├── TagRenameModal.ts │ ├── TagSuggestModal.ts │ └── WhatsNewModal.ts ├── releaseNotes.ts ├── services │ ├── CommandQueueService.ts │ ├── FileSystemService.ts │ ├── MetadataService.ts │ ├── OmnisearchService.ts │ ├── RecentNotesService.ts │ ├── RecentStorageService.ts │ ├── ReleaseCheckService.ts │ ├── TagOperations.ts │ ├── TagTreeService.ts │ ├── commands │ │ └── registerNavigatorCommands.ts │ ├── content │ │ ├── BaseContentProvider.ts │ │ ├── ContentProviderRegistry.ts │ │ ├── FeatureImageContentProvider.ts │ │ ├── MetadataContentProvider.ts │ │ ├── PreviewContentProvider.ts │ │ └── TagContentProvider.ts │ ├── icons │ │ ├── IconService.ts │ │ ├── external │ │ │ ├── ExternalIconProviderController.ts │ │ │ ├── IconAssetDatabase.ts │ │ │ ├── bundledManifests.ts │ │ │ └── providerRegistry.ts │ │ ├── index.ts │ │ ├── providerCatalogLinks.ts │ │ ├── providers │ │ │ ├── BaseFontIconProvider.ts │ │ │ ├── BootstrapIconProvider.ts │ │ │ ├── EmojiIconProvider.ts │ │ │ ├── FontAwesomeIconProvider.ts │ │ │ ├── LucideIconProvider.ts │ │ │ ├── MaterialIconProvider.ts │ │ │ ├── PhosphorIconProvider.ts │ │ │ ├── RpgAwesomeIconProvider.ts │ │ │ ├── SimpleIconsProvider.ts │ │ │ └── providerUtils.ts │ │ └── types.ts │ ├── metadata │ │ ├── BaseMetadataService.ts │ │ ├── FileMetadataService.ts │ │ ├── FolderMetadataService.ts │ │ ├── NavigationSeparatorService.ts │ │ ├── TagMetadataService.ts │ │ └── index.ts │ ├── recent │ │ └── RecentDataManager.ts │ ├── tagOperations │ │ ├── TagBatchOperations.ts │ │ ├── TagDeleteWorkflow.ts │ │ ├── TagFileMutations.ts │ │ ├── TagOperationUtils.ts │ │ ├── TagRenameWorkflow.ts │ │ ├── TagShortcutMutations.ts │ │ └── types.ts │ ├── tagRename │ │ ├── TagRenameEngine.ts │ │ └── frontmatterTagMutator.ts │ └── workspace │ │ ├── HomepageController.ts │ │ ├── WorkspaceCoordinator.ts │ │ └── registerWorkspaceEvents.ts ├── settings.ts ├── settings │ ├── defaultSettings.ts │ ├── tabs │ │ ├── AdvancedTab.ts │ │ ├── FoldersTagsTab.ts │ │ ├── GeneralTab.ts │ │ ├── HotkeysSearchTab.ts │ │ ├── IconPacksTab.ts │ │ ├── ListPaneTab.ts │ │ ├── NavigationPaneTab.ts │ │ ├── NotesTab.ts │ │ └── SettingsTabContext.ts │ └── types.ts ├── storage │ ├── IndexedDBStorage.ts │ ├── MemoryFileCache.ts │ ├── diffCalculator.ts │ ├── fileOperations.ts │ └── statistics.ts ├── suggest │ └── SearchTagInputSuggest.ts ├── types.ts ├── types │ ├── folderNote.ts │ ├── listReorder.ts │ ├── noteCounts.ts │ ├── obsidian-extended.ts │ ├── scroll.ts │ ├── search.ts │ ├── shortcuts.ts │ ├── storage.ts │ └── virtualization.ts ├── utils │ ├── androidFontScale.ts │ ├── arrayUtils.ts │ ├── async.ts │ ├── codeRangeUtils.ts │ ├── colorUtils.ts │ ├── contextMenu │ │ ├── emptyListMenuBuilder.ts │ │ ├── fileMenuBuilder.ts │ │ ├── folderMenuBuilder.ts │ │ ├── index.ts │ │ ├── menuAsyncHelpers.ts │ │ ├── menuTypes.ts │ │ ├── styleClipboard.ts │ │ ├── styleMenuBuilder.ts │ │ └── tagMenuBuilder.ts │ ├── dateUtils.ts │ ├── deleteOperations.ts │ ├── dndConfig.ts │ ├── domEventListeners.ts │ ├── domUtils.ts │ ├── dragData.ts │ ├── dragGhost.ts │ ├── drawingFileUtils.ts │ ├── emojiUtils.ts │ ├── errorUtils.ts │ ├── exclusionUtils.ts │ ├── fileCreationUtils.ts │ ├── fileFilters.ts │ ├── fileFinder.ts │ ├── fileNameUtils.ts │ ├── fileTypeUtils.ts │ ├── filterSearch.ts │ ├── folderNotes.ts │ ├── homepageUtils.ts │ ├── iconizeFormat.ts │ ├── keyboardShortcuts.ts │ ├── listGrouping.ts │ ├── listPaneMeasurements.ts │ ├── listPaneMetrics.ts │ ├── localStorage.ts │ ├── metadataExtractor.ts │ ├── navigationIndex.ts │ ├── navigationSections.ts │ ├── navigationSeparators.ts │ ├── noteCountFormatting.ts │ ├── noteCountUtils.ts │ ├── noticeUtils.ts │ ├── openFileInContext.ts │ ├── paneLayout.ts │ ├── paneSizing.ts │ ├── pathPatternMatcher.ts │ ├── pathUtils.ts │ ├── previewTextUtils.ts │ ├── recordUtils.ts │ ├── searchHighlight.ts │ ├── selectionUtils.ts │ ├── sortUtils.ts │ ├── tagModalHelpers.ts │ ├── tagPrefixMatcher.ts │ ├── tagTree.ts │ ├── tagUtils.ts │ ├── treeFlattener.ts │ ├── typeGuards.ts │ ├── uiScale.ts │ ├── vaultProfiles.ts │ ├── virtualTagCollections.ts │ └── workspaceSplit.ts └── view │ └── NotebookNavigatorView.tsx ├── styles.css ├── tests ├── README.md ├── api-test-suite.js ├── api │ └── MetadataAPI.test.ts ├── services │ ├── BaseMetadataService.test.ts │ ├── FileMetadataService.test.ts │ ├── RecentStorageService.test.ts │ ├── TagMetadataService.test.ts │ ├── TagOperations.test.ts │ └── tagOperations │ │ ├── TagFileMutations.test.ts │ │ └── TagWorkflows.test.ts ├── stubs │ └── obsidian.ts └── utils │ ├── codeRangeUtils.test.ts │ ├── createTestTFile.ts │ ├── dateUtils.test.ts │ ├── fileNameUtils.test.ts │ ├── filterSearch.test.ts │ ├── iconizeFormat.test.ts │ ├── metadataExtractor.test.ts │ ├── pathMetadata.ts │ ├── previewTextUtils.test.ts │ ├── recordUtils.test.ts │ ├── tagPrefixMatcher.test.ts │ ├── tagTree.test.ts │ ├── tagUtils.test.ts │ └── vaultProfiles.test.ts ├── tsconfig.json ├── version-bump.mjs ├── versions.json └── vitest.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/PULL_REQUEST_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/README.md -------------------------------------------------------------------------------- /docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/api-reference.md -------------------------------------------------------------------------------- /docs/rendering-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/rendering-architecture.md -------------------------------------------------------------------------------- /docs/scroll-orchestration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/scroll-orchestration.md -------------------------------------------------------------------------------- /docs/service-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/service-architecture.md -------------------------------------------------------------------------------- /docs/startup-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/startup-process.md -------------------------------------------------------------------------------- /docs/storage-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/storage-architecture.md -------------------------------------------------------------------------------- /docs/theming-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/docs/theming-guide.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon-assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/README.md -------------------------------------------------------------------------------- /icon-assets/bootstrap-icons/1.13.1/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/bootstrap-icons/1.13.1/bootstrap-icons.json -------------------------------------------------------------------------------- /icon-assets/bootstrap-icons/1.13.1/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/bootstrap-icons/1.13.1/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /icon-assets/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /icon-assets/bootstrap-icons/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/bootstrap-icons/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /icon-assets/bootstrap-icons/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/bootstrap-icons/latest.json -------------------------------------------------------------------------------- /icon-assets/fontawesome/6.6.0/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/fontawesome/6.6.0/fa-solid-900.woff2 -------------------------------------------------------------------------------- /icon-assets/fontawesome/6.6.0/icons-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/fontawesome/6.6.0/icons-solid.json -------------------------------------------------------------------------------- /icon-assets/fontawesome/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/fontawesome/fa-solid-900.woff2 -------------------------------------------------------------------------------- /icon-assets/fontawesome/icons-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/fontawesome/icons-solid.json -------------------------------------------------------------------------------- /icon-assets/fontawesome/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/fontawesome/latest.json -------------------------------------------------------------------------------- /icon-assets/material-icons/140/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/material-icons/140/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /icon-assets/material-icons/140/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/material-icons/140/icons.json -------------------------------------------------------------------------------- /icon-assets/material-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/material-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /icon-assets/material-icons/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/material-icons/icons.json -------------------------------------------------------------------------------- /icon-assets/material-icons/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/material-icons/latest.json -------------------------------------------------------------------------------- /icon-assets/phosphor/2.1.1/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/phosphor/2.1.1/icons.json -------------------------------------------------------------------------------- /icon-assets/phosphor/2.1.1/phosphor-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/phosphor/2.1.1/phosphor-regular.woff2 -------------------------------------------------------------------------------- /icon-assets/phosphor/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/phosphor/icons.json -------------------------------------------------------------------------------- /icon-assets/phosphor/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/phosphor/latest.json -------------------------------------------------------------------------------- /icon-assets/phosphor/phosphor-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/phosphor/phosphor-regular.woff2 -------------------------------------------------------------------------------- /icon-assets/rpg-awesome/0.2.0/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/rpg-awesome/0.2.0/icons.json -------------------------------------------------------------------------------- /icon-assets/rpg-awesome/0.2.0/rpgawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/rpg-awesome/0.2.0/rpgawesome-webfont.woff -------------------------------------------------------------------------------- /icon-assets/rpg-awesome/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/rpg-awesome/icons.json -------------------------------------------------------------------------------- /icon-assets/rpg-awesome/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/rpg-awesome/latest.json -------------------------------------------------------------------------------- /icon-assets/rpg-awesome/rpgawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/rpg-awesome/rpgawesome-webfont.woff -------------------------------------------------------------------------------- /icon-assets/scripts/config/bootstrap-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/bootstrap-icons.ts -------------------------------------------------------------------------------- /icon-assets/scripts/config/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/fontawesome.ts -------------------------------------------------------------------------------- /icon-assets/scripts/config/material-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/material-icons.ts -------------------------------------------------------------------------------- /icon-assets/scripts/config/phosphor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/phosphor.ts -------------------------------------------------------------------------------- /icon-assets/scripts/config/rpg-awesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/rpg-awesome.ts -------------------------------------------------------------------------------- /icon-assets/scripts/config/simple-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/config/simple-icons.ts -------------------------------------------------------------------------------- /icon-assets/scripts/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/shared.ts -------------------------------------------------------------------------------- /icon-assets/scripts/update-icon-packs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/scripts/update-icon-packs.ts -------------------------------------------------------------------------------- /icon-assets/simple-icons/15.16.0/SimpleIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/simple-icons/15.16.0/SimpleIcons.woff2 -------------------------------------------------------------------------------- /icon-assets/simple-icons/15.16.0/simple-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/simple-icons/15.16.0/simple-icons.json -------------------------------------------------------------------------------- /icon-assets/simple-icons/SimpleIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/simple-icons/SimpleIcons.woff2 -------------------------------------------------------------------------------- /icon-assets/simple-icons/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/simple-icons/latest.json -------------------------------------------------------------------------------- /icon-assets/simple-icons/simple-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/icon-assets/simple-icons/simple-icons.json -------------------------------------------------------------------------------- /images/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/images/banner.gif -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/listpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/images/listpane.png -------------------------------------------------------------------------------- /images/navpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/images/navpane.png -------------------------------------------------------------------------------- /images/notebook-navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/images/notebook-navigator.png -------------------------------------------------------------------------------- /knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/knip.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/check-unused-css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/check-unused-css.sh -------------------------------------------------------------------------------- /scripts/gitdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/gitdump.sh -------------------------------------------------------------------------------- /scripts/mdReleaseNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/mdReleaseNotes.js -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/release.js -------------------------------------------------------------------------------- /scripts/update-icon-packs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/scripts/update-icon-packs.sh -------------------------------------------------------------------------------- /src/api/NotebookNavigatorAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/NotebookNavigatorAPI.ts -------------------------------------------------------------------------------- /src/api/modules/MetadataAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/modules/MetadataAPI.ts -------------------------------------------------------------------------------- /src/api/modules/NavigationAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/modules/NavigationAPI.ts -------------------------------------------------------------------------------- /src/api/modules/SelectionAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/modules/SelectionAPI.ts -------------------------------------------------------------------------------- /src/api/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/public/README.md -------------------------------------------------------------------------------- /src/api/public/notebook-navigator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/public/notebook-navigator.d.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/api/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/api/version.ts -------------------------------------------------------------------------------- /src/components/FileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/FileItem.tsx -------------------------------------------------------------------------------- /src/components/FolderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/FolderItem.tsx -------------------------------------------------------------------------------- /src/components/ListPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ListPane.tsx -------------------------------------------------------------------------------- /src/components/ListPaneAppearanceMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ListPaneAppearanceMenu.tsx -------------------------------------------------------------------------------- /src/components/ListPaneHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ListPaneHeader.tsx -------------------------------------------------------------------------------- /src/components/ListPaneTitleArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ListPaneTitleArea.tsx -------------------------------------------------------------------------------- /src/components/ListToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ListToolbar.tsx -------------------------------------------------------------------------------- /src/components/NavigationBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationBanner.tsx -------------------------------------------------------------------------------- /src/components/NavigationListRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationListRow.tsx -------------------------------------------------------------------------------- /src/components/NavigationPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationPane.tsx -------------------------------------------------------------------------------- /src/components/NavigationPaneHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationPaneHeader.tsx -------------------------------------------------------------------------------- /src/components/NavigationRootReorderPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationRootReorderPanel.tsx -------------------------------------------------------------------------------- /src/components/NavigationToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NavigationToolbar.tsx -------------------------------------------------------------------------------- /src/components/NotebookNavigatorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NotebookNavigatorComponent.tsx -------------------------------------------------------------------------------- /src/components/NotebookNavigatorContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/NotebookNavigatorContainer.tsx -------------------------------------------------------------------------------- /src/components/ObsidianIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ObsidianIcon.tsx -------------------------------------------------------------------------------- /src/components/RootFolderReorderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/RootFolderReorderItem.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/ShortcutItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/ShortcutItem.tsx -------------------------------------------------------------------------------- /src/components/SkeletonView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/SkeletonView.tsx -------------------------------------------------------------------------------- /src/components/TagTreeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/TagTreeItem.tsx -------------------------------------------------------------------------------- /src/components/UpdateNoticeBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/UpdateNoticeBanner.tsx -------------------------------------------------------------------------------- /src/components/UpdateNoticeIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/UpdateNoticeIndicator.tsx -------------------------------------------------------------------------------- /src/components/VirtualFolderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/components/VirtualFolderItem.tsx -------------------------------------------------------------------------------- /src/constants/colorPalette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/constants/colorPalette.ts -------------------------------------------------------------------------------- /src/constants/pluginIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/constants/pluginIds.ts -------------------------------------------------------------------------------- /src/constants/surfaceColorMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/constants/surfaceColorMappings.ts -------------------------------------------------------------------------------- /src/constants/updateNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/constants/updateNotice.ts -------------------------------------------------------------------------------- /src/context/ExpansionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/ExpansionContext.tsx -------------------------------------------------------------------------------- /src/context/RecentDataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/RecentDataContext.tsx -------------------------------------------------------------------------------- /src/context/SelectionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/SelectionContext.tsx -------------------------------------------------------------------------------- /src/context/ServicesContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/ServicesContext.tsx -------------------------------------------------------------------------------- /src/context/SettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/SettingsContext.tsx -------------------------------------------------------------------------------- /src/context/ShortcutsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/ShortcutsContext.tsx -------------------------------------------------------------------------------- /src/context/StorageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/StorageContext.tsx -------------------------------------------------------------------------------- /src/context/UIStateContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/UIStateContext.tsx -------------------------------------------------------------------------------- /src/context/UXPreferencesContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/context/UXPreferencesContext.tsx -------------------------------------------------------------------------------- /src/hooks/useAutoDismissFade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useAutoDismissFade.ts -------------------------------------------------------------------------------- /src/hooks/useContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useContextMenu.ts -------------------------------------------------------------------------------- /src/hooks/useDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useDragAndDrop.ts -------------------------------------------------------------------------------- /src/hooks/useDragNavigationPaneActivation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useDragNavigationPaneActivation.ts -------------------------------------------------------------------------------- /src/hooks/useFileOpener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useFileOpener.ts -------------------------------------------------------------------------------- /src/hooks/useKeyboardNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useKeyboardNavigation.ts -------------------------------------------------------------------------------- /src/hooks/useListActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListActions.ts -------------------------------------------------------------------------------- /src/hooks/useListPaneAppearance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListPaneAppearance.ts -------------------------------------------------------------------------------- /src/hooks/useListPaneData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListPaneData.ts -------------------------------------------------------------------------------- /src/hooks/useListPaneKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListPaneKeyboard.ts -------------------------------------------------------------------------------- /src/hooks/useListPaneScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListPaneScroll.ts -------------------------------------------------------------------------------- /src/hooks/useListPaneTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useListPaneTitle.ts -------------------------------------------------------------------------------- /src/hooks/useMultiSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useMultiSelection.ts -------------------------------------------------------------------------------- /src/hooks/useNavigationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigationActions.ts -------------------------------------------------------------------------------- /src/hooks/useNavigationPaneData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigationPaneData.ts -------------------------------------------------------------------------------- /src/hooks/useNavigationPaneKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigationPaneKeyboard.ts -------------------------------------------------------------------------------- /src/hooks/useNavigationPaneScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigationPaneScroll.ts -------------------------------------------------------------------------------- /src/hooks/useNavigationRootReorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigationRootReorder.tsx -------------------------------------------------------------------------------- /src/hooks/useNavigatorEventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigatorEventHandlers.ts -------------------------------------------------------------------------------- /src/hooks/useNavigatorReveal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigatorReveal.ts -------------------------------------------------------------------------------- /src/hooks/useNavigatorScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useNavigatorScale.ts -------------------------------------------------------------------------------- /src/hooks/useResizablePane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useResizablePane.ts -------------------------------------------------------------------------------- /src/hooks/useRootFolderOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useRootFolderOrder.ts -------------------------------------------------------------------------------- /src/hooks/useRootTagOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useRootTagOrder.ts -------------------------------------------------------------------------------- /src/hooks/useSurfaceColorVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useSurfaceColorVariables.ts -------------------------------------------------------------------------------- /src/hooks/useSwipeGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useSwipeGesture.ts -------------------------------------------------------------------------------- /src/hooks/useTagNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useTagNavigation.ts -------------------------------------------------------------------------------- /src/hooks/useUpdateNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/hooks/useUpdateNotice.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/ar.ts -------------------------------------------------------------------------------- /src/i18n/locales/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/de.ts -------------------------------------------------------------------------------- /src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/es.ts -------------------------------------------------------------------------------- /src/i18n/locales/fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/fa.ts -------------------------------------------------------------------------------- /src/i18n/locales/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/fr.ts -------------------------------------------------------------------------------- /src/i18n/locales/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/id.ts -------------------------------------------------------------------------------- /src/i18n/locales/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/it.ts -------------------------------------------------------------------------------- /src/i18n/locales/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/ja.ts -------------------------------------------------------------------------------- /src/i18n/locales/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/ko.ts -------------------------------------------------------------------------------- /src/i18n/locales/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/nl.ts -------------------------------------------------------------------------------- /src/i18n/locales/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/pl.ts -------------------------------------------------------------------------------- /src/i18n/locales/pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/pt.ts -------------------------------------------------------------------------------- /src/i18n/locales/pt_br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/pt_br.ts -------------------------------------------------------------------------------- /src/i18n/locales/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/ru.ts -------------------------------------------------------------------------------- /src/i18n/locales/th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/th.ts -------------------------------------------------------------------------------- /src/i18n/locales/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/tr.ts -------------------------------------------------------------------------------- /src/i18n/locales/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/uk.ts -------------------------------------------------------------------------------- /src/i18n/locales/vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/vi.ts -------------------------------------------------------------------------------- /src/i18n/locales/zh_cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/zh_cn.ts -------------------------------------------------------------------------------- /src/i18n/locales/zh_tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/i18n/locales/zh_tw.ts -------------------------------------------------------------------------------- /src/interfaces/IContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/interfaces/IContentProvider.ts -------------------------------------------------------------------------------- /src/interfaces/ISettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/interfaces/ISettingsProvider.ts -------------------------------------------------------------------------------- /src/interfaces/ITagTreeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/interfaces/ITagTreeProvider.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modals/BaseSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/BaseSuggestModal.ts -------------------------------------------------------------------------------- /src/modals/ColorPickerModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/ColorPickerModal.ts -------------------------------------------------------------------------------- /src/modals/ConfirmModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/ConfirmModal.ts -------------------------------------------------------------------------------- /src/modals/EditVaultProfilesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/EditVaultProfilesModal.ts -------------------------------------------------------------------------------- /src/modals/FolderNoteTypeModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/FolderNoteTypeModal.ts -------------------------------------------------------------------------------- /src/modals/FolderSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/FolderSuggestModal.ts -------------------------------------------------------------------------------- /src/modals/HomepageModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/HomepageModal.ts -------------------------------------------------------------------------------- /src/modals/IconPickerModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/IconPickerModal.ts -------------------------------------------------------------------------------- /src/modals/InputModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/InputModal.ts -------------------------------------------------------------------------------- /src/modals/NavigationBannerModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/NavigationBannerModal.ts -------------------------------------------------------------------------------- /src/modals/RemoveTagModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/RemoveTagModal.ts -------------------------------------------------------------------------------- /src/modals/SaveSearchShortcutModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/SaveSearchShortcutModal.ts -------------------------------------------------------------------------------- /src/modals/SelectVaultProfileModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/SelectVaultProfileModal.ts -------------------------------------------------------------------------------- /src/modals/TagRenameModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/TagRenameModal.ts -------------------------------------------------------------------------------- /src/modals/TagSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/TagSuggestModal.ts -------------------------------------------------------------------------------- /src/modals/WhatsNewModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/modals/WhatsNewModal.ts -------------------------------------------------------------------------------- /src/releaseNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/releaseNotes.ts -------------------------------------------------------------------------------- /src/services/CommandQueueService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/CommandQueueService.ts -------------------------------------------------------------------------------- /src/services/FileSystemService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/FileSystemService.ts -------------------------------------------------------------------------------- /src/services/MetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/MetadataService.ts -------------------------------------------------------------------------------- /src/services/OmnisearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/OmnisearchService.ts -------------------------------------------------------------------------------- /src/services/RecentNotesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/RecentNotesService.ts -------------------------------------------------------------------------------- /src/services/RecentStorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/RecentStorageService.ts -------------------------------------------------------------------------------- /src/services/ReleaseCheckService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/ReleaseCheckService.ts -------------------------------------------------------------------------------- /src/services/TagOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/TagOperations.ts -------------------------------------------------------------------------------- /src/services/TagTreeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/TagTreeService.ts -------------------------------------------------------------------------------- /src/services/commands/registerNavigatorCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/commands/registerNavigatorCommands.ts -------------------------------------------------------------------------------- /src/services/content/BaseContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/BaseContentProvider.ts -------------------------------------------------------------------------------- /src/services/content/ContentProviderRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/ContentProviderRegistry.ts -------------------------------------------------------------------------------- /src/services/content/FeatureImageContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/FeatureImageContentProvider.ts -------------------------------------------------------------------------------- /src/services/content/MetadataContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/MetadataContentProvider.ts -------------------------------------------------------------------------------- /src/services/content/PreviewContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/PreviewContentProvider.ts -------------------------------------------------------------------------------- /src/services/content/TagContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/content/TagContentProvider.ts -------------------------------------------------------------------------------- /src/services/icons/IconService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/IconService.ts -------------------------------------------------------------------------------- /src/services/icons/external/ExternalIconProviderController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/external/ExternalIconProviderController.ts -------------------------------------------------------------------------------- /src/services/icons/external/IconAssetDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/external/IconAssetDatabase.ts -------------------------------------------------------------------------------- /src/services/icons/external/bundledManifests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/external/bundledManifests.ts -------------------------------------------------------------------------------- /src/services/icons/external/providerRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/external/providerRegistry.ts -------------------------------------------------------------------------------- /src/services/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/index.ts -------------------------------------------------------------------------------- /src/services/icons/providerCatalogLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providerCatalogLinks.ts -------------------------------------------------------------------------------- /src/services/icons/providers/BaseFontIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/BaseFontIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/BootstrapIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/BootstrapIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/EmojiIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/EmojiIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/FontAwesomeIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/FontAwesomeIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/LucideIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/LucideIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/MaterialIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/MaterialIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/PhosphorIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/PhosphorIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/RpgAwesomeIconProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/RpgAwesomeIconProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/SimpleIconsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/SimpleIconsProvider.ts -------------------------------------------------------------------------------- /src/services/icons/providers/providerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/providers/providerUtils.ts -------------------------------------------------------------------------------- /src/services/icons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/icons/types.ts -------------------------------------------------------------------------------- /src/services/metadata/BaseMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/BaseMetadataService.ts -------------------------------------------------------------------------------- /src/services/metadata/FileMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/FileMetadataService.ts -------------------------------------------------------------------------------- /src/services/metadata/FolderMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/FolderMetadataService.ts -------------------------------------------------------------------------------- /src/services/metadata/NavigationSeparatorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/NavigationSeparatorService.ts -------------------------------------------------------------------------------- /src/services/metadata/TagMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/TagMetadataService.ts -------------------------------------------------------------------------------- /src/services/metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/metadata/index.ts -------------------------------------------------------------------------------- /src/services/recent/RecentDataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/recent/RecentDataManager.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagBatchOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagBatchOperations.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagDeleteWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagDeleteWorkflow.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagFileMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagFileMutations.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagOperationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagOperationUtils.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagRenameWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagRenameWorkflow.ts -------------------------------------------------------------------------------- /src/services/tagOperations/TagShortcutMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/TagShortcutMutations.ts -------------------------------------------------------------------------------- /src/services/tagOperations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagOperations/types.ts -------------------------------------------------------------------------------- /src/services/tagRename/TagRenameEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagRename/TagRenameEngine.ts -------------------------------------------------------------------------------- /src/services/tagRename/frontmatterTagMutator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/tagRename/frontmatterTagMutator.ts -------------------------------------------------------------------------------- /src/services/workspace/HomepageController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/workspace/HomepageController.ts -------------------------------------------------------------------------------- /src/services/workspace/WorkspaceCoordinator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/workspace/WorkspaceCoordinator.ts -------------------------------------------------------------------------------- /src/services/workspace/registerWorkspaceEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/services/workspace/registerWorkspaceEvents.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/settings/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/defaultSettings.ts -------------------------------------------------------------------------------- /src/settings/tabs/AdvancedTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/AdvancedTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/FoldersTagsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/FoldersTagsTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/GeneralTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/GeneralTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/HotkeysSearchTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/HotkeysSearchTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/IconPacksTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/IconPacksTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/ListPaneTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/ListPaneTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/NavigationPaneTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/NavigationPaneTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/NotesTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/NotesTab.ts -------------------------------------------------------------------------------- /src/settings/tabs/SettingsTabContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/tabs/SettingsTabContext.ts -------------------------------------------------------------------------------- /src/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/settings/types.ts -------------------------------------------------------------------------------- /src/storage/IndexedDBStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/storage/IndexedDBStorage.ts -------------------------------------------------------------------------------- /src/storage/MemoryFileCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/storage/MemoryFileCache.ts -------------------------------------------------------------------------------- /src/storage/diffCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/storage/diffCalculator.ts -------------------------------------------------------------------------------- /src/storage/fileOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/storage/fileOperations.ts -------------------------------------------------------------------------------- /src/storage/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/storage/statistics.ts -------------------------------------------------------------------------------- /src/suggest/SearchTagInputSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/suggest/SearchTagInputSuggest.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/folderNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/folderNote.ts -------------------------------------------------------------------------------- /src/types/listReorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/listReorder.ts -------------------------------------------------------------------------------- /src/types/noteCounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/noteCounts.ts -------------------------------------------------------------------------------- /src/types/obsidian-extended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/obsidian-extended.ts -------------------------------------------------------------------------------- /src/types/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/scroll.ts -------------------------------------------------------------------------------- /src/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/search.ts -------------------------------------------------------------------------------- /src/types/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/shortcuts.ts -------------------------------------------------------------------------------- /src/types/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/storage.ts -------------------------------------------------------------------------------- /src/types/virtualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/types/virtualization.ts -------------------------------------------------------------------------------- /src/utils/androidFontScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/androidFontScale.ts -------------------------------------------------------------------------------- /src/utils/arrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/arrayUtils.ts -------------------------------------------------------------------------------- /src/utils/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/async.ts -------------------------------------------------------------------------------- /src/utils/codeRangeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/codeRangeUtils.ts -------------------------------------------------------------------------------- /src/utils/colorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/colorUtils.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/emptyListMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/emptyListMenuBuilder.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/fileMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/fileMenuBuilder.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/folderMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/folderMenuBuilder.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/index.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/menuAsyncHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/menuAsyncHelpers.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/menuTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/menuTypes.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/styleClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/styleClipboard.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/styleMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/styleMenuBuilder.ts -------------------------------------------------------------------------------- /src/utils/contextMenu/tagMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/contextMenu/tagMenuBuilder.ts -------------------------------------------------------------------------------- /src/utils/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/dateUtils.ts -------------------------------------------------------------------------------- /src/utils/deleteOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/deleteOperations.ts -------------------------------------------------------------------------------- /src/utils/dndConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/dndConfig.ts -------------------------------------------------------------------------------- /src/utils/domEventListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/domEventListeners.ts -------------------------------------------------------------------------------- /src/utils/domUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/domUtils.ts -------------------------------------------------------------------------------- /src/utils/dragData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/dragData.ts -------------------------------------------------------------------------------- /src/utils/dragGhost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/dragGhost.ts -------------------------------------------------------------------------------- /src/utils/drawingFileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/drawingFileUtils.ts -------------------------------------------------------------------------------- /src/utils/emojiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/emojiUtils.ts -------------------------------------------------------------------------------- /src/utils/errorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/errorUtils.ts -------------------------------------------------------------------------------- /src/utils/exclusionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/exclusionUtils.ts -------------------------------------------------------------------------------- /src/utils/fileCreationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/fileCreationUtils.ts -------------------------------------------------------------------------------- /src/utils/fileFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/fileFilters.ts -------------------------------------------------------------------------------- /src/utils/fileFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/fileFinder.ts -------------------------------------------------------------------------------- /src/utils/fileNameUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/fileNameUtils.ts -------------------------------------------------------------------------------- /src/utils/fileTypeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/fileTypeUtils.ts -------------------------------------------------------------------------------- /src/utils/filterSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/filterSearch.ts -------------------------------------------------------------------------------- /src/utils/folderNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/folderNotes.ts -------------------------------------------------------------------------------- /src/utils/homepageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/homepageUtils.ts -------------------------------------------------------------------------------- /src/utils/iconizeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/iconizeFormat.ts -------------------------------------------------------------------------------- /src/utils/keyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/keyboardShortcuts.ts -------------------------------------------------------------------------------- /src/utils/listGrouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/listGrouping.ts -------------------------------------------------------------------------------- /src/utils/listPaneMeasurements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/listPaneMeasurements.ts -------------------------------------------------------------------------------- /src/utils/listPaneMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/listPaneMetrics.ts -------------------------------------------------------------------------------- /src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/localStorage.ts -------------------------------------------------------------------------------- /src/utils/metadataExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/metadataExtractor.ts -------------------------------------------------------------------------------- /src/utils/navigationIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/navigationIndex.ts -------------------------------------------------------------------------------- /src/utils/navigationSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/navigationSections.ts -------------------------------------------------------------------------------- /src/utils/navigationSeparators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/navigationSeparators.ts -------------------------------------------------------------------------------- /src/utils/noteCountFormatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/noteCountFormatting.ts -------------------------------------------------------------------------------- /src/utils/noteCountUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/noteCountUtils.ts -------------------------------------------------------------------------------- /src/utils/noticeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/noticeUtils.ts -------------------------------------------------------------------------------- /src/utils/openFileInContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/openFileInContext.ts -------------------------------------------------------------------------------- /src/utils/paneLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/paneLayout.ts -------------------------------------------------------------------------------- /src/utils/paneSizing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/paneSizing.ts -------------------------------------------------------------------------------- /src/utils/pathPatternMatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/pathPatternMatcher.ts -------------------------------------------------------------------------------- /src/utils/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/pathUtils.ts -------------------------------------------------------------------------------- /src/utils/previewTextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/previewTextUtils.ts -------------------------------------------------------------------------------- /src/utils/recordUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/recordUtils.ts -------------------------------------------------------------------------------- /src/utils/searchHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/searchHighlight.ts -------------------------------------------------------------------------------- /src/utils/selectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/selectionUtils.ts -------------------------------------------------------------------------------- /src/utils/sortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/sortUtils.ts -------------------------------------------------------------------------------- /src/utils/tagModalHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/tagModalHelpers.ts -------------------------------------------------------------------------------- /src/utils/tagPrefixMatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/tagPrefixMatcher.ts -------------------------------------------------------------------------------- /src/utils/tagTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/tagTree.ts -------------------------------------------------------------------------------- /src/utils/tagUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/tagUtils.ts -------------------------------------------------------------------------------- /src/utils/treeFlattener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/treeFlattener.ts -------------------------------------------------------------------------------- /src/utils/typeGuards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/typeGuards.ts -------------------------------------------------------------------------------- /src/utils/uiScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/uiScale.ts -------------------------------------------------------------------------------- /src/utils/vaultProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/vaultProfiles.ts -------------------------------------------------------------------------------- /src/utils/virtualTagCollections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/virtualTagCollections.ts -------------------------------------------------------------------------------- /src/utils/workspaceSplit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/utils/workspaceSplit.ts -------------------------------------------------------------------------------- /src/view/NotebookNavigatorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/src/view/NotebookNavigatorView.tsx -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/styles.css -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/api-test-suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/api-test-suite.js -------------------------------------------------------------------------------- /tests/api/MetadataAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/api/MetadataAPI.test.ts -------------------------------------------------------------------------------- /tests/services/BaseMetadataService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/BaseMetadataService.test.ts -------------------------------------------------------------------------------- /tests/services/FileMetadataService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/FileMetadataService.test.ts -------------------------------------------------------------------------------- /tests/services/RecentStorageService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/RecentStorageService.test.ts -------------------------------------------------------------------------------- /tests/services/TagMetadataService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/TagMetadataService.test.ts -------------------------------------------------------------------------------- /tests/services/TagOperations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/TagOperations.test.ts -------------------------------------------------------------------------------- /tests/services/tagOperations/TagFileMutations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/tagOperations/TagFileMutations.test.ts -------------------------------------------------------------------------------- /tests/services/tagOperations/TagWorkflows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/services/tagOperations/TagWorkflows.test.ts -------------------------------------------------------------------------------- /tests/stubs/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/stubs/obsidian.ts -------------------------------------------------------------------------------- /tests/utils/codeRangeUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/codeRangeUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/createTestTFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/createTestTFile.ts -------------------------------------------------------------------------------- /tests/utils/dateUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/dateUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/fileNameUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/fileNameUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/filterSearch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/filterSearch.test.ts -------------------------------------------------------------------------------- /tests/utils/iconizeFormat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/iconizeFormat.test.ts -------------------------------------------------------------------------------- /tests/utils/metadataExtractor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/metadataExtractor.test.ts -------------------------------------------------------------------------------- /tests/utils/pathMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/pathMetadata.ts -------------------------------------------------------------------------------- /tests/utils/previewTextUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/previewTextUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/recordUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/recordUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/tagPrefixMatcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/tagPrefixMatcher.test.ts -------------------------------------------------------------------------------- /tests/utils/tagTree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/tagTree.test.ts -------------------------------------------------------------------------------- /tests/utils/tagUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/tagUtils.test.ts -------------------------------------------------------------------------------- /tests/utils/vaultProfiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tests/utils/vaultProfiles.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/versions.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/notebook-navigator/HEAD/vitest.config.ts --------------------------------------------------------------------------------