summaryrefslogtreecommitdiff
path: root/src/quickfix.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.1.1098: quickfix code duplicationv8.1.1098Bram Moolenaar2019-03-311-59/+71
* patch 8.1.1062: quickfix code is repeatedv8.1.1062Bram Moolenaar2019-03-281-139/+210
* patch 8.1.1036: quickfix function arguments are inconsistentv8.1.1036Bram Moolenaar2019-03-221-16/+17
* patch 8.1.1030: quickfix function arguments are inconsistentv8.1.1030Bram Moolenaar2019-03-211-69/+72
* patch 8.1.1015: quickfix buffer shows up in list, can't get buffer numberv8.1.1015Bram Moolenaar2019-03-171-1/+20
* patch 8.1.1006: repeated code in quickfix supportv8.1.1006Bram Moolenaar2019-03-131-56/+61
* patch 8.1.0988: deleting location list buffer breaks location list windowv8.1.0988Bram Moolenaar2019-03-021-13/+27
* patch 8.1.0892: failure when closing a window when location list is in usev8.1.0892Bram Moolenaar2019-02-101-26/+36
* patch 8.1.0877: new buffer used every time the quickfix window is openedv8.1.0877Bram Moolenaar2019-02-051-25/+59
* patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte charactersv8.1.0859Bram Moolenaar2019-01-311-24/+3
* patch 8.1.0828: still using FEAT_VIRTUALEDITv8.1.0828Bram Moolenaar2019-01-261-4/+0
* patch 8.1.0809: too many #ifdefsv8.1.0809Bram Moolenaar2019-01-241-37/+5
* patch 8.1.0779: argument for message functions is inconsistentv8.1.0779Bram Moolenaar2019-01-191-10/+10
* patch 8.1.0753: printf format not checked for semsg()v8.1.0753Bram Moolenaar2019-01-151-1/+1
* patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar2019-01-131-73/+51
* patch 8.1.0720: cannot easily change the current quickfx list indexv8.1.0720Bram Moolenaar2019-01-111-9/+56
* patch 8.1.0622: adding quickfix items marks items as valid errorsv8.1.0622Bram Moolenaar2018-12-221-10/+21
* patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string()v8.1.0583Bram Moolenaar2018-12-141-12/+12
* patch 8.1.0532: cannot distinguish between quickfix and location listv8.1.0532Bram Moolenaar2018-11-161-17/+37
* patch 8.1.0523: opening window from quickfix leaves empty buffer behindv8.1.0523Bram Moolenaar2018-11-111-31/+58
* patch 8.1.0499: :2vimgrep causes an ml_get errorv8.1.0499Bram Moolenaar2018-10-281-4/+4
* patch 8.1.0489: crash when autocmd clears vimpgrep location listv8.1.0489Bram Moolenaar2018-10-211-34/+30
* patch 8.1.0488: using freed memory in quickfix codev8.1.0488Bram Moolenaar2018-10-201-12/+159
* patch 8.1.0469: too often indexing in qf_lists[]v8.1.0469Bram Moolenaar2018-10-111-52/+68
* patch 8.1.0461: quickfix code uses too many /* */ commentsv8.1.0461Bram Moolenaar2018-10-071-585/+501
* patch 8.1.0455: checking for empty quickfix stack is not consistentv8.1.0455Bram Moolenaar2018-10-071-16/+22
* patch 8.1.0438: the ex_make() function is too longv8.1.0438Bram Moolenaar2018-09-281-93/+116
* patch 8.1.0434: copy_loclist() is too longv8.1.0434Bram Moolenaar2018-09-251-90/+104
* patch 8.1.0431: the qf_jump() function is too longv8.1.0431Bram Moolenaar2018-09-241-105/+160
* patch 8.1.0410: the ex_copen() function is too longv8.1.0410Bram Moolenaar2018-09-191-93/+117
* patch 8.1.0407: quickfix code mixes using the stack and a list pointerv8.1.0407Bram Moolenaar2018-09-181-114/+111
* patch 8.1.0345: cannot get the window id associated with the location listv8.1.0345Bram Moolenaar2018-09-021-3/+36
* patch 8.1.0330: the qf_add_entries() function is too longv8.1.0330Bram Moolenaar2018-08-281-66/+79
* patch 8.1.0315: helpgrep with language doesn't work properlyv8.1.0315Bram Moolenaar2018-08-211-16/+14
* patch 8.1.0293: checks for type of stack is crypticv8.1.0293Bram Moolenaar2018-08-181-9/+14
* patch 8.1.0289: cursor moves to wrong column after quickfix jumpv8.1.0289Bram Moolenaar2018-08-151-0/+1
* patch 8.1.0288: quickfix code uses cmdidx too oftenv8.1.0288Bram Moolenaar2018-08-151-59/+54
* patch 8.1.0267: no good check if restoring quickfix list workedv8.1.0267Bram Moolenaar2018-08-111-8/+15
* patch 8.1.0261: Coverity complains about a negative array indexv8.1.0261Bram Moolenaar2018-08-091-19/+24
* patch 8.1.0259: no test for fixed quickfix issuev8.1.0259Bram Moolenaar2018-08-091-9/+3
* patch 8.1.0252: quickfix functions are too longv8.1.0252Bram Moolenaar2018-08-071-287/+500
* patch 8.1.0248: duplicated quickfix codev8.1.0248Bram Moolenaar2018-08-071-18/+22
* patch 8.1.0230: directly checking 'buftype' valuev8.1.0230Bram Moolenaar2018-08-011-4/+3
* patch 8.1.0213: CTRL-W CR does not work properly in a quickfix windowv8.1.0213Bram Moolenaar2018-07-251-0/+36
* patch 8.1.0169: calling message_filtered() a bit too oftenv8.1.0169Bram Moolenaar2018-07-081-5/+8
* patch 8.1.0166: using dict_add_nr_str() is clumsyv8.1.0166Bram Moolenaar2018-07-081-37/+28
* patch 8.1.0165: :clist output can be very longv8.1.0165Bram Moolenaar2018-07-081-1/+17
* patch 8.1.0141: :cexpr no longer jumps to the first errorv8.1.0141Bram Moolenaar2018-07-031-40/+90
* patch 8.1.0074: crash when running quickfix testsv8.1.0074Bram Moolenaar2018-06-181-1/+1
* patch 8.1.0073: crash when autocommands call setloclist()v8.1.0073Bram Moolenaar2018-06-181-3/+5