diff options
author | bptato <nincsnevem662@gmail.com> | 2024-01-29 20:22:39 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-01-29 20:33:59 +0100 |
commit | cc3b9ada95c438bf2c9d83fa1037aa3950da07a4 (patch) | |
tree | 06b7f553c4136a2ea9673f107193a7956c379fd4 /doc | |
parent | 2a18436ca92bc46034fd8a21b2949b3991f4b0a4 (diff) | |
download | chawan-cc3b9ada95c438bf2c9d83fa1037aa3950da07a4.tar.gz |
Add command to yank link under cursor (yc)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.md | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/config.md b/doc/config.md index 7c7ca27d..7b726404 100644 --- a/doc/config.md +++ b/doc/config.md @@ -1092,21 +1092,31 @@ will be fixed in the future.)</td> </tr> <tr> -<td>`pager.externCapture(cmd)` -</td> +<td>`pager.externCapture(cmd)`</td> <td>Like extern(), but redirect the command's stdout string into the result. null is returned if the command wasn't executed successfully, or if the command returned a non-zero exit value.</td> </tr> <tr> -<td>`pager.externInto(cmd, ins)` -</td> +<td>`pager.externInto(cmd, ins)`</td> <td>Like extern(), but redirect `ins` into the command's standard input stream. `true` is returned if the command exits successfully, otherwise the return value is `false`.</td> </tr> +<tr> +<td>`pager.hoverLink`</td> +<td>Getter for the link currently under the cursor. Returns the empty string if +no link is found.</td> +</tr> + +<tr> +<td>`pager.hoverTitle`</td> +<td>Getter for the title currently under the cursor. Returns the empty string if +no title is found.</td> +</tr> + </table> |