Comment on Ask HN: How do you use Vim in the era of AI?Comments−hsaliak2moI have my own coding harness (std::slop), in that i focus on a vim centric flow. Basically a few commands open. up my $EDITOR which is vim.1. /edit => opens in editor2. /feedback => opens the last llm message in an editor so i can inline feedback. Think inline responses in email vs bottom posting.3. /review => same as /feedback but opens up the diff so i do an inline review. Yes I still read the code it ships.So basically in this flow vim becomes integral to doing anything involved.
Comments
I have my own coding harness (std::slop), in that i focus on a vim centric flow. Basically a few commands open. up my $EDITOR which is vim.
1. /edit => opens in editor
2. /feedback => opens the last llm message in an editor so i can inline feedback. Think inline responses in email vs bottom posting.
3. /review => same as /feedback but opens up the diff so i do an inline review. Yes I still read the code it ships.
So basically in this flow vim becomes integral to doing anything involved.