DEV Community

kodemaan
kodemaan

Posted on

Fish Terminal - Edit current command buffer

I was having an issue remapping the current command because on Mac OSX the default command is escape ctrl e which is not very user friendly. After a bunch of googling I finally came up with a solution. Add this to your ~/.config/fish/config.fish file

bind \ce edit_command_buffer

This will map it to ctrl + e which is a lot easier to use.
I was able to find this by running bind --all which led me to find the default binding bind --preset \ee edit_command_buffer

Top comments (0)