DEV Community

Jason Purdy
Jason Purdy

Posted on

3 3

Sublime Merge Keymap

Wanted to share a useful Sublime Merge config. You can create your own key mappings to perform various tasks. One of my frequently-used tasks is to git fetch --all --prune to bring my local box up-to-date with the various work of others. So I created a key mapping so I can do a Shift + ⌘ + r (think force refresh from the browser) inside Sublime Merge to do just that.

To do this, select the Edit Key Bindings... menu option under the Sublime Merge / Preferences menu:

Screenshot showing the menu option

And this is what my keymap looks like:

[
  {
    "keys": ["shift+command+r"],
    "command": "git",
    "args": {"argv": ["fetch", "--all", "--prune"]}
  }
]
Enter fullscreen mode Exit fullscreen mode

This is Mac-specific, but you could do the same with control vs. command for Windows/Linux.

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post