You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple replace with the below works for me, but I am wondering the implications of this. Ie, just take the line number we already get passed in via EXCMD and use that for the center.
CENTER=$(echo "${EXCMD}"| awk -F '''{print $1}')
I can stick a PR in for this if it looks fine
The text was updated successfully, but these errors were encountered:
man fzf
)When using
:Tags
, the preview window does not display the correct line number, but displays the below error.Seems that the below snippet in
tagpreview.sh
is the cause:A simple replace with the below works for me, but I am wondering the implications of this. Ie, just take the line number we already get passed in via
EXCMD
and use that for the center.CENTER=$(echo "${EXCMD}" | awk -F ' ' '{print $1}')
I can stick a PR in for this if it looks fine
The text was updated successfully, but these errors were encountered: