ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Find​Key​Conflicts

by skuroda ALL

Plugin for Sublime Text to help identify conflicting key mappings.

Details

  • 2019.05.17.02.08.34
  • github.​com
  • github.​com
  • 5 years ago
  • 15 minutes ago
  • 11 years ago

Installs

  • Total 42K
  • Win 20K
  • Mac 15K
  • Linux 6K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 0 0 3 4 1 1 0 1 0 0 2 0 1 4 1 1 1 1 1 0 1 1 0 0 1 0 1 0 0 1 0 1 0 0 2 0 0 1 1 0 1 0 1 0 0
Mac 1 0 0 0 1 1 0 0 2 0 3 1 2 0 1 0 1 0 0 1 1 2 1 0 1 1 0 4 3 0 1 0 0 0 0 0 0 5 5 1 1 0 0 0 0 1
Linux 0 0 1 0 1 0 1 0 0 0 0 0 1 2 0 0 0 0 0 9 1 0 0 2 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 2 0 0 0 0 0 1

Readme

Source
raw.​githubusercontent.​com

FindKeyConflicts

Assist in finding key conflicts between various plugins. This plugin will report back shortcut keys that are mapped to more than one package. This does not guarantee that the listed plugins are necessarily in conflict, as details, such as context, are ignored. This is simply a tool to help assist what plugins may be conflicting.

Installation

Manual

Clone or copy this repository into the packages directory. By default, they are located at:

  • OS X: ~/Library/Application Support/Sublime Text 2/Packages/
  • Windows: %APPDATA%/Roaming/Sublime Text 2/Packages/
  • Linux: ~/.config/sublime-text-2/Packages/

Package Control

Installation through package control is recommended. It will handle updating your packages as they become available. To install, do the following.

  • In the Command Palette, enter Package Control: Install Package
  • Search for FindKeyConflicts

Usage

This plugin can be run through specifying commands on the command palette. The commands are listed in alphabetical order, beginning with modifiers (alt, cntl, shift, super), followed by keys. The commands are as follows:

FindKeyConflicts: All Key Maps to Quick Panel:

Displays all key mappings in a quick panel. Selecting an entry will open a buffer with additional details about the key binding.

FindKeyConflicts: All Key Maps to Buffer:

Displays all key mappings in a buffer.

FindKeyConflicts: (Direct) Conflicts to Quick Panel:

This command finds all direct key conflicts, and displays them on the quick panel. The last package listed under the command is the source for the command being run, if it is not limited by context. Selecting a particular entry will open a buffer with details about that key binding.

FindKeyConflicts: (Direct) Conflicts to Buffer:

Display key direct conflicts in a view. Using this will give a better idea of how commands conflict, as the context for the commands will be included in the output. The last package listed for a particular binding is the command that is used, if it is not limited by context.

FindKeyConflicts: Overlap Conflicts:

Displays key bindings that overlap with mutli part key bindings in a buffer. For example, if ["ctrl+t"] exists as one binding and ["ctrl+t", "t"], exists as another binding, this will be displayed.

FindKeyConflicts: All Conflicts:

Displays all conflicts in a buffer. This option will include both direct and overlapping conflicts.

FindKeyConflicts: Single Package Conflicts:

Displays conflicts that involve the selected package.

FindKeyConflicts: Multiple Package Conflicts:

Displays conflicts that involve the selected packages. Select (Done) when you are done selecting packages. You may use (View Selected) and (View Packages) to view the selected packages and the package list respsectively. Also, you may remove packages from the selected list by pressing enter when viewing the selected packages list.

FindKeyConflicts: Command Search:

Display a list of the packages containing keymap files. After selecting a package, a list of commands will be displayed in the quick panel. Selecting a command from the subsequent list will run the command.

Settings

ignored_packages:

An array containing packages to ignore. Note that the ignored_packages in the Preferences are automatically added to this list.

ignore_single_key:

Boolean value specifying if single key bindings should be ignored. False by default.

ignore_patterns:

Array containing key patterns to ignore. These should follow the same guidelines as specifying key bindings.

display_internal_conflicts:

Boolean value used to determine if internal command conflicts to a package should be displayed.

Notes

Thanks to bizoo for sharing their work with me. Thanks to getify for the json minifier. Thanks to facelessuser for the strip dangling commas work.