diff options
Diffstat (limited to '')
-rw-r--r-- | src/scripts/lnav-copy-text.lnav | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/scripts/lnav-copy-text.lnav b/src/scripts/lnav-copy-text.lnav new file mode 100644 index 0000000..541409e --- /dev/null +++ b/src/scripts/lnav-copy-text.lnav @@ -0,0 +1,15 @@ +# +# @synopsis: lnav-copy-text +# @description: Copy text from the top view +# + +;SELECT jget(selected_text, '/value') AS content FROM lnav_top_view +;SELECT CASE + WHEN $content IS NULL THEN + ':write-to -' + ELSE + ':echo -n ${content}' + END AS cmd + +:redirect-to /dev/clipboard +:eval ${cmd} |