#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:
parent
99afdebba8
commit
05fbb3f05e
|
@ -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";
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue