We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04e8c64 + 0089856 commit 88d3c5aCopy full SHA for 88d3c5a
builtin/source/quickfix.ts
@@ -11,12 +11,12 @@ type Detail = {
11
};
12
13
/**
14
- * Provides a source for recently accessed files.
+ * Provides a source for the current quickfix errors.
15
*
16
- * This source fetches the list of old files stored in the `v:oldfiles` variable
17
- * in Vim/Neovim and yields them with each file’s path as `Detail`.
+ * This source reads the list of the current quickfix errors and yields them
+ * with each error's detailed information as `Detail`.
18
19
- * @returns A source that yields recently accessed files.
+ * @returns A source that yields the current quickfix errors.
20
*/
21
export function quickfix(): Source<Detail> {
22
return defineSource(async function* (denops, _params, { signal }) {
0 commit comments