diff options
| author | Luke Kershaw <35707277+l-kershaw@users.noreply.github.com> | 2022-12-21 07:53:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-21 08:53:29 +0100 |
| commit | 278c797b58020bd238b3a7e4c0b086a4414f8a34 (patch) | |
| tree | b0f999e1b8457c3644e6e69da40a8944f39bde3b /lua/telescope/make_entry.lua | |
| parent | cabf991b1d3996fa6f3232327fc649bbdf676496 (diff) | |
fix(builtin.live_grep): add spacer ":" even when coordinates disabled (#2275)
* fix(builtin.live_grep): add spacer ":" even when coordinates disabled
* fix docgen
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
Diffstat (limited to 'lua/telescope/make_entry.lua')
| -rw-r--r-- | lua/telescope/make_entry.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/make_entry.lua b/lua/telescope/make_entry.lua index ea0a8f7..3843e5d 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -316,7 +316,7 @@ do display = function(entry) local display_filename = utils.transform_path(opts, entry.filename) - local coordinates = "" + local coordinates = ":" if not disable_coordinates then if entry.lnum then if entry.col then |
