comparison runtime/doc/quickfix.txt @ 20762:68170c89e355 v8.2.0933

patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list Commit: https://github.com/vim/vim/commit/7ba5a7eff335dcce25afaa154f32eeadb6014b61 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 8 19:20:27 2020 +0200 patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list Problem: 'quickfixtextfunc' does not get window ID of location list. Solution: Add "winid" to the dict argument. (Yegappan Lakshmanan, closes #6222)
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Jun 2020 19:30:03 +0200
parents 661eb972cb22
children f23c6543a54d
comparison
equal deleted inserted replaced
20761:8eb1d42ec2c9 20762:68170c89e355
1951 every entry in a quickfix or a location list. The dict argument will have the 1951 every entry in a quickfix or a location list. The dict argument will have the
1952 following fields: 1952 following fields:
1953 1953
1954 quickfix set to 1 when called for a quickfix list and 0 when called for 1954 quickfix set to 1 when called for a quickfix list and 0 when called for
1955 a location list. 1955 a location list.
1956 winid for a location list, set to the id of the window with the
1957 location list. For a quickfix list, set to 0. Can be used in
1958 getloclist() to get the location list entry.
1956 id quickfix or location list identifier 1959 id quickfix or location list identifier
1957 idx index of the entry in the quickfix or location list 1960 idx index of the entry in the quickfix or location list
1958 1961
1959 The function should return a single line of text to display in the quickfix 1962 The function should return a single line of text to display in the quickfix
1960 window for the entry identified by idx. The function can obtain information 1963 window for the entry identified by idx. The function can obtain information