The pql sidebar panel and the find-in-files tab were duplicate search surfaces. Consolidate into one Search tab with a mode switch: Find (content grep), Vault (pql ranked search), Query (PQL DSL), Markdown (the synced markdown-file listing, keeping focus-highlight + live refresh). SearchPanelView holds both FindInFilesController and PqlController; the pql body + result rows move into a reusable PqlSearchBody. The standalone builtin.pql sidebar tab is removed (one fewer tab — eases the rail); the pql extension keeps the Backlinks context panel. No D-79 conflict — grep vs ranked search remain distinct backends, this is UI consolidation. Adds the pql builtin's first widget/controller tests (it was untested, so folding it into the tested Search panel required covering the Vault/Query/Markdown modes + PqlController). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
30 lines
884 B
Dart
30 lines
884 B
Dart
import 'package:clide/builtin/pql/src/backlinks_view.dart';
|
|
import 'package:clide/extension/extension.dart';
|
|
import 'package:clide/kernel/kernel.dart';
|
|
import 'package:clide/widgets/widgets.dart';
|
|
|
|
class PqlExtension extends ClideExtension {
|
|
@override
|
|
String get id => 'builtin.pql';
|
|
@override
|
|
String get title => 'pql';
|
|
@override
|
|
String get version => '0.3.0';
|
|
@override
|
|
List<String> get dependsOn => const [];
|
|
|
|
// The pql search/query/markdown surface moved into the unified Search
|
|
// tab (T-201); this extension keeps only the Backlinks context panel.
|
|
@override
|
|
List<ContributionPoint> get contributions => [
|
|
TabContribution(
|
|
id: 'pql.backlinks',
|
|
slot: Slots.contextPanel,
|
|
title: 'Links',
|
|
icon: PhosphorIcons.link,
|
|
priority: -80,
|
|
build: (_) => const BacklinksView(),
|
|
),
|
|
];
|
|
}
|