We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, great project but I have a little suggestion - Implement some sort of type highlighting. This is my current temp workaround:
type
manix "" | grep '^# ' | sed 's/^# \(.*\) (.*/\1/;s/ (.*//;s/^# //' | fzf --ansi --preview="manix '{}' | sed 's/type: /> type: /g' | bat -l Markdown --color=always --plain"
I am just adding the symbol > in front of the type. Seems to get the job done :)
>
Thanks for this project, and good luck 👍
The text was updated successfully, but these errors were encountered:
manix "" | rg -o '^# ([\w.-_'"'"']+)' -r '$1' | awk '!x[\$0]++' | fzf --ansi --preview="manix '{}' | sd 'type: ' '> type: ' | bat -l Markdown --color=always --plain"
addded | awk '!x[\$0]++' for efficient deduplication
| awk '!x[\$0]++'
manix_hits="^# ([\w.-_']+)" manix_preview="manix '{}' | sd 'type: ' '> type: ' | bat -l Markdown --color=always --plain" alias mnix="manix '' | rg -o \"$manix_hits\" -r '\$1' | awk '!x[\$0]++' | fzf --ansi --preview=\"$manix_preview\""
Sorry, something went wrong.
No branches or pull requests
Hey, great project but I have a little suggestion - Implement some sort of
type
highlighting. This is my current temp workaround:I am just adding the symbol
>
in front of the type. Seems to get the job done :)Thanks for this project, and good luck 👍
The text was updated successfully, but these errors were encountered: