Opens the default plugin keyboard bindings file for editing in a new tab
(window, platform)
| 45 | |
| 46 | |
| 47 | def open_sublime_keymap(window, platform): |
| 48 | """Opens the default plugin keyboard bindings file for editing in a new tab""" |
| 49 | file_name = KEYMAP_FILENAME.replace("$PLATFORM", platform) |
| 50 | file_path = join(get_root_dir(), file_name) |
| 51 | window.open_file(file_path) |
| 52 | |
| 53 | |
| 54 | def open_u_sublime_keymap(window, platform): |