https://github.com/lambdalisue/vim-mr-quickfix
https://github.com/lambdalisue/vim-mr-quickfix
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lambdalisue/vim-mr-quickfix
- Owner: lambdalisue
- License: mit
- Created: 2020-10-26T03:55:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-26T03:58:25.000Z (about 5 years ago)
- Last Synced: 2025-04-28T18:13:03.555Z (8 months ago)
- Language: Vim script
- Size: 2.93 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🎩 mr-quickfix.vim
_mr-quickfix.vim_ (mr-quickfix) is a plugin of [mr.vim](https://github.com/lambdalisue/mr.vim) which provides `Mru` and `Mrw` commands to record MRU and MRW to `quickfix`.
### Usage
Use `Mru` or `Mrw` with `copen` like:
```
:Mru | copen
:Mrw | copen
```
Or specify a path to get local MRU/MRW like:
```
:Mru . | copen
:Mrw . | copen
```
Or
```
:Mru %:h | copen
:Mrw %:h | copen
```
Or
```
:Mru /some/path | copen
:Mrw /some/path | copen
```