#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,
|
determineFolderDatesIfNeeded,
|
||||||
determineSortingGroup,
|
determineSortingGroup,
|
||||||
FolderItemForSorting,
|
FolderItemForSorting,
|
||||||
matchGroupRegex, sorterByBookmarkOrder, sorterByMetadataField,
|
matchGroupRegex,
|
||||||
|
sorterByBookmarkOrder,
|
||||||
|
sorterByMetadataField,
|
||||||
SorterFn,
|
SorterFn,
|
||||||
getSorterFnFor, ProcessingContext
|
getSorterFnFor,
|
||||||
|
ProcessingContext
|
||||||
} from './custom-sort';
|
} from './custom-sort';
|
||||||
import {CustomSortGroupType, CustomSortOrder, CustomSortSpec, RegExpSpec} from './custom-sort-types';
|
import {CustomSortGroupType, CustomSortOrder, CustomSortSpec, RegExpSpec} from './custom-sort-types';
|
||||||
import {CompoundDashNumberNormalizerFn, CompoundDotRomanNumberNormalizerFn} from "./sorting-spec-processor";
|
import {CompoundDashNumberNormalizerFn, CompoundDotRomanNumberNormalizerFn} from "./sorting-spec-processor";
|
||||||
|
|
|
@ -1,5 +1,15 @@
|
||||||
import {FrontMatterCache, MetadataCache, Plugin, requireApiVersion, TAbstractFile, TFile, TFolder} from 'obsidian';
|
import {
|
||||||
import {determineStarredStatusOf, Starred_PluginInstance} from '../utils/StarredPluginSignature';
|
FrontMatterCache,
|
||||||
|
MetadataCache,
|
||||||
|
Plugin,
|
||||||
|
requireApiVersion,
|
||||||
|
TAbstractFile,
|
||||||
|
TFile,
|
||||||
|
TFolder} from 'obsidian';
|
||||||
|
import {
|
||||||
|
determineStarredStatusOf,
|
||||||
|
Starred_PluginInstance
|
||||||
|
} from '../utils/StarredPluginSignature';
|
||||||
import {
|
import {
|
||||||
determineIconOf,
|
determineIconOf,
|
||||||
ObsidianIconFolder_PluginInstance
|
ObsidianIconFolder_PluginInstance
|
||||||
|
|
Loading…
Reference in New Issue