···11+#!/usr/bin/env bash
22+33+# Use fzf to select a file and capture the output
44+selected_file=$(python3 poonam/main.py report --titles=false | head -n -2 | fzf --preview 'bat --color=always --terminal-width -1 ./vimwiki/{}')
55+66+# Add additional details to the file path
77+file_path="./vimwiki/${selected_file}"
88+99+# Open the file in vim for editing
1010+vim "${file_path}"
1111+