diff options
author | ben | 2024-10-11 21:42:00 +0200 |
---|---|---|
committer | ben | 2024-10-11 21:42:00 +0200 |
commit | 25f610066187d65f22f405c5001d3c11b787e0b3 (patch) | |
tree | 6da3a3856c0308bea4372145f0c0a27c072943af | |
parent | 2fa39bf76faf78f92d371824b0f2f5fe3ee90445 (diff) | |
download | fms-25f610066187d65f22f405c5001d3c11b787e0b3.tar.gz fms-25f610066187d65f22f405c5001d3c11b787e0b3.tar.bz2 fms-25f610066187d65f22f405c5001d3c11b787e0b3.tar.xz |
Fix manuals feature when using string to search
-rwxr-xr-x | fms.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ function notes() { function manuals() { echo -n 0 >${SWITCH_MENU} unset RES - RES=$(man -k . | bat --color=always -pp - | sk --reverse --ansi --inline-info --keep-right --print-query \ + RES=$(man -k . | bat --color=always -pp - | sk --reverse --ansi --inline-info --keep-right \ --bind "shift-left:execute-silent(echo -n 1 > ${SWITCH_MENU})+abort" \ --bind "shift-right:execute-silent(echo -n 1 > ${SWITCH_MENU})+abort") SWITCH=$(cat ${SWITCH_MENU}) |