Last active
July 5, 2022 07:47
-
-
Save higumachan/bffca4265a6849cb6c2b2927d94f9186 to your computer and use it in GitHub Desktop.
いい感じに検索しながらpreview
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sk --ansi -i -c 'ag --color "{}"' --preview "python preview.py {}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew ag | |
cargo install skim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
a = sys.argv[1].split(":")[0] | |
os.system("cat {} | jq .".format(a)) | |
td72
commented
Jul 5, 2022
たぶんこれで検索したワードと前後5行を表示できる気がする
sk --ansi -i -c 'ag --color "{}"' --preview 'cat $(echo {} | cut -d':' -f1) | jq . | grep -5 {}'
だめでした
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment