Skip to content

chore: fix jsdoc for quickfix source #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions builtin/source/quickfix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ type Detail = {
};

/**
* Provides a source for recently accessed files.
* Provides a source for the current quickfix errors.
*
* This source fetches the list of old files stored in the `v:oldfiles` variable
* 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`.
*
* @returns A source that yields recently accessed files.
* @returns A source that yields the current quickfix errors.
*/
export function quickfix(): Source<Detail> {
return defineSource(async function* (denops, _params, { signal }) {
Expand Down