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 = {
11
11
} ;
12
12
13
13
/**
14
- * Provides a source for recently accessed files .
14
+ * Provides a source for the current quickfix errors .
15
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`.
16
+ * This source reads the list of the current quickfix errors and yields them
17
+ * with each error's detailed information as `Detail`.
18
18
*
19
- * @returns A source that yields recently accessed files .
19
+ * @returns A source that yields the current quickfix errors .
20
20
*/
21
21
export function quickfix ( ) : Source < Detail > {
22
22
return defineSource ( async function * ( denops , _params , { signal } ) {
You can’t perform that action at this time.
0 commit comments