()
| 153 | } |
| 154 | |
| 155 | private choicePickerGroup(): SettingDefinitionGroup<SettingsKey> { |
| 156 | return { |
| 157 | type: "group", |
| 158 | heading: "Choice Picker", |
| 159 | items: [ |
| 160 | { |
| 161 | name: "Search nested choices", |
| 162 | desc: "When searching in the choice picker, also match choices nested inside Multi choices and show their path. Note that nested matches can outrank same-level ones. Disable to search only the open level.", |
| 163 | control: { type: "toggle", key: "searchNestedChoices" }, |
| 164 | }, |
| 165 | { |
| 166 | name: "“New note from template” in the launcher", |
| 167 | desc: "Add a row to Run QuickAdd that lists templates from your configured template folder, so you can create a note from a template without a dedicated Template choice. Only appears when a template folder is configured; the command palette entry works regardless.", |
| 168 | control: { |
| 169 | type: "dropdown", |
| 170 | key: "templateFolderLauncherRow", |
| 171 | defaultValue: "bottom", |
| 172 | options: { |
| 173 | bottom: "Show at the bottom (keeps your top choice first)", |
| 174 | top: "Show at the top", |
| 175 | off: "Hide", |
| 176 | }, |
| 177 | }, |
| 178 | }, |
| 179 | ], |
| 180 | }; |
| 181 | } |
| 182 | |
| 183 | private inputGroup(): SettingDefinitionGroup<SettingsKey> { |
| 184 | return { |
no outgoing calls
no test coverage detected