File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,30 +19,24 @@ use promkit_widgets::{
1919} ;
2020use tokio:: sync:: { mpsc, RwLock } ;
2121
22- mod query_editor ;
23- use query_editor :: QueryEditor ;
22+ mod completion ;
23+ use completion :: { CompletionAction , CompletionNavigator } ;
2424mod config;
25- use config:: Config ;
25+ use config:: { Config , DEFAULT_CONFIG } ;
2626mod context;
27+ use context:: { Index , SharedContext } ;
28+ mod event_dispatcher;
2729mod guide;
30+ use guide:: GuideAction ;
31+ mod json;
2832mod json_viewer;
33+ mod query_editor;
34+ use query_editor:: { QueryEditor , QueryEditorAction } ;
35+ mod runtime_tasks;
2936mod stdout_redirect;
3037use stdout_redirect:: StdoutRedirect ;
31- mod completion;
32- mod event_dispatcher;
33- mod runtime_tasks;
34- use completion:: CompletionNavigator ;
35- mod json;
3638mod utils;
3739
38- use crate :: {
39- completion:: CompletionAction ,
40- config:: DEFAULT_CONFIG ,
41- context:: { Index , SharedContext } ,
42- guide:: GuideAction ,
43- query_editor:: QueryEditorAction ,
44- } ;
45-
4640/// JSON navigator and interactive filter leveraging jq
4741#[ derive( Parser ) ]
4842#[ command(
You can’t perform that action at this time.
0 commit comments