How can I make a keyboard shortcut for Navigate > File History... in Sublime Merge?
Sublime Merge - keyboard shortcut for "File History"
1.3k Views Asked by CrazyTim At
1
There are 1 best solutions below
Related Questions in SUBLIMEMERGE
- Bitbucket and SublimeMerge Compatibility Issue with WSL2 and Git Commits Loading
- Can I integrate Beyond Compare as an "External Diff" tool from Sublime Merge
- Remove file from existing commit in Sublime Merge
- How can I pull after renaming local branch and deleting duplicated remote branch via GitHub?
- Is there way to recover unstaged files
- How to access bitbucket repository in Sublime Merge using App Password
- Rebase my changes on top of another branch updates in Sublime Merge
- Using Sublime Merge with Vagrant
- How to git commit and push?
- 'git add -u' stage all repo files
- A ruler on SublimeMerge
- How do I remove Sublime Merge integration from sublime text
- How do I create a new repository in Sublime Merge without Exit Code 1?
- Git push and pull from different repo
- Sublime Merge - How to emulate git log -p <folder>
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The command for this is
file_history; it will prompt you interactively in the command palette and commands of that nature need to be invoked via theshow_command_palettecommand.So, a key binding that duplicates what the menu item
Navigate > File History...does would look like the following (using an example key; change that as desired):This binding goes into the
Default (<PLATFORM>).sublime-keymapfile in your MergeUserpackage, where<PLATFORM>is one ofLinux,WindowsorOSXdepending on what platform you're using.You can locate the
Userpackage by choosing thePreferences > Browse Packagescommand from the menu and then navigating inside of theUserpackage.Note that just like Sublime, the
sublime-keymapfile is a JSON file that is a list of key bindings; thus if you don't already have key bindings, you need to wrap the key binding above in[and]characters to make it the first item in the list.