curve: add kitaab unlinked fzf command
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Use fzf to select a file and capture the output
|
||||
selected_file=$(python3 poonam/main.py report --titles=false | head -n -2 | fzf --preview 'bat --color=always --terminal-width -1 ./vimwiki/{}')
|
||||
|
||||
# Add additional details to the file path
|
||||
file_path="./vimwiki/${selected_file}"
|
||||
|
||||
# Open the file in vim for editing
|
||||
vim "${file_path}"
|
||||
|
||||
Reference in New Issue
Block a user