Just quickly got #tootcli up and running with nvim like so
```bash
local tempfile=$(mktemp)
# Open nvim and let the user edit the file
nvim $tempfile
# Use the contents of the file as input for your command
toot post "$(cat $tempfile)"
# Clean up the temporary file
rm $tempfile
```
Simply run the script, edit the text file and save quit :wq