Populate the quickfix list and open it. List should be in qflist format: see ":h setqflist" for details.
( quickfix_list )
| 497 | |
| 498 | |
| 499 | def SetQuickFixList( quickfix_list ): |
| 500 | """Populate the quickfix list and open it. List should be in qflist format: |
| 501 | see ":h setqflist" for details.""" |
| 502 | vim.eval( f'setqflist( { json.dumps( quickfix_list ) } )' ) |
| 503 | |
| 504 | |
| 505 | def OpenQuickFixList( focus = False, autoclose = False ): |