File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 */
2121export function quickfix ( ) : Source < Detail > {
2222 return defineSource ( async function * ( denops , _params , { signal } ) {
You can’t perform that action at this time.
0 commit comments