diff options
| author | Simon Hauser <Simon-Hauser@outlook.de> | 2022-03-10 13:48:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-10 13:48:40 +0100 |
| commit | 234066f875c131b92e99f92495729a8f6f5c1bb9 (patch) | |
| tree | 31d813f3e642d3eb51fd12c7b4adfce00bb2f942 /lua/telescope/make_entry.lua | |
| parent | 1daf0917cf859c3c089c62e960b128fe3382fc6d (diff) | |
fix: man_pages previewer, respecting MANPATH and apropos output parsing (#1764)
- introducing putils writer and use it rather than using PAGER env var
- introducing env for lua/telescope/_.lua job interface
- to respect MANPATH (and PATH just in case)
- fix for apropos output parsing might return e.g. `alacritty, Alacritty`
We need to split on first `,`
Diffstat (limited to 'lua/telescope/make_entry.lua')
| -rw-r--r-- | lua/telescope/make_entry.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/telescope/make_entry.lua b/lua/telescope/make_entry.lua index 38a5d9b..9881097 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -611,6 +611,11 @@ function make_entry.gen_from_apropos(opts) return function(line) local keyword, cmd, section, desc = line:match "^((.-)%s*%(([^)]+)%).-)%s+%-%s+(.*)$" + -- apropos might return alternatives for the cmd which are split on `,` and breaks everything else + -- for example on void linux it will return `alacritty, Alacritty` which will later result in + -- `man 1 alacritty, Alacritty`. So we just take the first one. + -- doing this outside of regex because of obvious reasons + cmd = vim.split(cmd, ",")[1] return keyword and sections[section] and { |
