This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Integration Notes:** | |
1. The original default bindings that conflicted with the new PyCharm bindings (`Cmd+R`, `Cmd+D`, `Cmd+B`, `Cmd+Backspace`, `Cmd+Alt+Left`, `Cmd+Alt+Right`) have been **commented out** using `//` at the beginning of each line of the conflicting binding block. This allows you to easily revert if needed. | |
2. The new block of PyCharm-style keybindings (including the remapped original Sublime commands) has been added to the **end** of the JSON array, just before the final `]`. | |
3. Bindings that already matched between Sublime default and PyCharm (like `Cmd+F`, `Cmd+W`, `Cmd+/`) were left untouched in their original positions. | |
Copy and paste the entire content below into your `Packages/User/Default (OSX).sublime-keymap` file, replacing its current content. | |
```json | |
// Default (OSX).sublime-keymap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Enable component-scanning and auto-configuration with @SpringBootApplication Annotation | |
// It combines @Configuration + @ComponentScan + @EnableAutoConfiguration | |
@SpringBootApplication | |
public class FooApplication { | |
public static void main(String[] args) { | |
// Bootstrap the application | |
SpringApplication.run(FooApplication.class, args); | |
} | |
} |