Open iTerm2 links in Vim

A quick tip on how you can open iTerm2 links in Vim (or any text editor you can access from the command line)

Until recently I didn’t know that in iTerm2 you can hold down and click on a file or path and it would open said file or path.

This was kind of neat, but for me what would make it epic is if you could open the file or path inside of vim.

Turns out it is really straight forward.

  • Open your preferences pane (⌘ + ,)
  • Click on “Profiles”
  • Click on “Advanced”
  • Under Semantic History select “Run coprocess…” and paste in the text echo vim \1

Now whenever you click a file or path it will open in Vim for you.


Recent posts View all

Web Dev

Updating payment method email addresses in Stripe

You can't update the email address associated with a payment method in Stripe via their dashboard, you need to use the Stripe CLI

Ruby

Irreversible Rails Migrations

What are irreversible migrations and how might we use them to our advantage?