#74 - Integration with Bookmarks core plugin and support for indirect drag & drop arrangement

- minor code reformatting for easier diff & readability
This commit is contained in:
SebastianMC 2023-04-19 17:06:03 +02:00
parent 99afdebba8
commit 05fbb3f05e
2 changed files with 17 additions and 4 deletions

View File

@ -5,9 +5,12 @@ import {
determineFolderDatesIfNeeded,
determineSortingGroup,
FolderItemForSorting,
matchGroupRegex, sorterByBookmarkOrder, sorterByMetadataField,
matchGroupRegex,
sorterByBookmarkOrder,
sorterByMetadataField,
SorterFn,
getSorterFnFor, ProcessingContext
getSorterFnFor,
ProcessingContext
} from './custom-sort';
import {CustomSortGroupType, CustomSortOrder, CustomSortSpec, RegExpSpec} from './custom-sort-types';
import {CompoundDashNumberNormalizerFn, CompoundDotRomanNumberNormalizerFn} from "./sorting-spec-processor";

View File

@ -1,5 +1,15 @@
import {FrontMatterCache, MetadataCache, Plugin, requireApiVersion, TAbstractFile, TFile, TFolder} from 'obsidian';
import {determineStarredStatusOf, Starred_PluginInstance} from '../utils/StarredPluginSignature';
import {
FrontMatterCache,
MetadataCache,
Plugin,
requireApiVersion,
TAbstractFile,
TFile,
TFolder} from 'obsidian';
import {
determineStarredStatusOf,
Starred_PluginInstance
} from '../utils/StarredPluginSignature';
import {
determineIconOf,
ObsidianIconFolder_PluginInstance