Skip to content

Commit 88d3c5a

Browse files
authored
Merge pull request #7 from mityu/fix-quickfix-source-jsdoc
chore: fix jsdoc for quickfix source
2 parents 04e8c64 + 0089856 commit 88d3c5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

builtin/source/quickfix.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ type Detail = {
1111
};
1212

1313
/**
14-
* Provides a source for recently accessed files.
14+
* Provides a source for the current quickfix errors.
1515
*
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`.
16+
* This source reads the list of the current quickfix errors and yields them
17+
* with each error's detailed information as `Detail`.
1818
*
19-
* @returns A source that yields recently accessed files.
19+
* @returns A source that yields the current quickfix errors.
2020
*/
2121
export function quickfix(): Source<Detail> {
2222
return defineSource(async function* (denops, _params, { signal }) {

0 commit comments

Comments
 (0)