We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd2765 commit 91877a9Copy full SHA for 91877a9
denops/fall/picker.ts
@@ -260,6 +260,11 @@ export class Picker<T extends Detail> implements AsyncDisposable {
260
this.#collectProcessor.start(denops, { args });
261
stack.defer(() => this.#collectProcessor.pause());
262
263
+ // Change window title
264
+ if (args.length > 0) {
265
+ this.#inputComponent.title = `${this.#name}:${args.join(" ")}`;
266
+ }
267
+
268
// Start mainloop
269
let action: string | undefined;
270
const accept = async (name: string) => {
0 commit comments