|
| 1 | +" === QUICKFIX === |
| 2 | + |
| 3 | +" Opens the quickfix list |
| 4 | +command! -nargs=* Qopen lua require'qf'.open('c', <q-args>) |
| 5 | +" Qlose the quickfix list |
| 6 | +command! -nargs=* Qclose lua require'qf'.close('c', <q-args>) |
| 7 | +" Toggle the quickfix list |
| 8 | +command! -nargs=* Qtoggle lua require'qf'.close('c', <q-args>) |
| 9 | +" Qlear the contents of quickfix list |
| 10 | +command! -nargs=* Qclear lua require'qf'.clear('c', <q-args>) |
| 11 | + |
| 12 | +" Move to the next item in quickfix list and wrap around. |
| 13 | +" Second argument denotes wrap> |
| 14 | +command! -nargs=* Qnext lua require'qf'.next('c', <q-args>) |
| 15 | +" Move to the previous item in quickfix list. |
| 16 | +" Second argument denotes wrap> |
| 17 | +command! -nargs=* Qprev lua require'qf'.prev('c', <q-args>) |
| 18 | +" Move to the previous item in quickfix list. |
| 19 | +" Second argument denotes wrap> |
| 20 | +command! -nargs=* Qabove lua require'qf'.above('c', <q-args>) |
| 21 | +" Move to the previous item in quickfix list. |
| 22 | +" Second argument denotes wrap> |
| 23 | +command! -nargs=* Qbelow lua require'qf'.below('c', <q-args>) |
| 24 | + |
| 25 | +" Save the quickfix list |
| 26 | +command! -nargs=* Qsave lua require'qf'.save('c', <q-args>) |
| 27 | +" Load a saved quickfix list |
| 28 | +command! -nargs=* Qload lua require'qf'.load('c', <q-args>) |
| 29 | +" Set the item in quickfix list |
| 30 | +command! -nargs=* Qset lua require'qf'.below('c', <q-args>) |
| 31 | + |
| 32 | +" === LOCATION === |
| 33 | + |
| 34 | +" Opens the quickfix list |
| 35 | +command! -nargs=* Lopen lua require'qf'.open('l', <q-args>) |
| 36 | +" Close the quickfix list |
| 37 | +command! -nargs=* Lclose lua require'qf'.close('l', <q-args>) |
| 38 | +" Toggle the quickfix list |
| 39 | +command! -nargs=* Ltoggle lua require'qf'.close('l', <q-args>) |
| 40 | +" Clear the contents of quickfix list |
| 41 | +command! -nargs=* Lclear lua require'qf'.clear('l', <q-args>) |
| 42 | + |
| 43 | +" Move to the next item in quickfix list and wrap around. |
| 44 | +" Second argument denotes wrap> |
| 45 | +command! -nargs=* Lnext lua require'qf'.next('l', <q-args>) |
| 46 | +" Move to the previous item in quickfix list. |
| 47 | +" Second argument denotes wrap> |
| 48 | +command! -nargs=* Lprev lua require'qf'.prev('l', <q-args>) |
| 49 | +" Move to the previous item in quickfix list. |
| 50 | +" Second argument denotes wrap> |
| 51 | +command! -nargs=* Labove lua require'qf'.above('l', <q-args>) |
| 52 | +" Move to the previous item in quickfix list. |
| 53 | +" Second argument denotes wrap> |
| 54 | +command! -nargs=* Lbelow lua require'qf'.below('l', <q-args>) |
| 55 | + |
| 56 | +" Save the quickfix list |
| 57 | +command! -nargs=* Lsave lua require'qf'.save('l', <q-args>) |
| 58 | +" Load a saved quickfix list |
| 59 | +command! -nargs=* Lload lua require'qf'.load('l', <q-args>) |
| 60 | +" Set the item in quickfix list |
| 61 | +command! -nargs=* Lset lua require'qf'.below('l', <q-args>) |
| 62 | + |
| 63 | + |
0 commit comments