fix new-file query completion

This commit is contained in:
Ryan Fleury
2024-05-24 12:16:30 -07:00
parent 9349ac9e72
commit f7ad44a0d7
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -2684,6 +2684,8 @@ DF_VIEW_UI_FUNCTION_DEF(FileSystem)
else else
{ {
DF_CmdParams params = df_cmd_params_from_view(ws, panel, view); DF_CmdParams params = df_cmd_params_from_view(ws, panel, view);
params.file_path = query;
df_cmd_params_mark_slot(&params, DF_CmdParamSlot_FilePath);
df_push_cmd__root(&params, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_CompleteQuery)); df_push_cmd__root(&params, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_CompleteQuery));
} }
} }
+3
View File
@@ -4,6 +4,9 @@
//////////////////////////////// ////////////////////////////////
//~ rjf: Frontend/UI Pass Tasks //~ rjf: Frontend/UI Pass Tasks
// //
// [ ] display threads at their last exception address, rather than current
// rip, if applicable
//
// [ ] editing multiple bindings for commands // [ ] editing multiple bindings for commands
// [ ] n-row table selection, in watch window & other UIs, multi-selection // [ ] n-row table selection, in watch window & other UIs, multi-selection
// ctrl+C // ctrl+C