Opens the default plugin settings file for editing in a new tab
(window)
| 33 | |
| 34 | |
| 35 | def open_sublime_settings(window): |
| 36 | """Opens the default plugin settings file for editing in a new tab""" |
| 37 | file_path = join(get_root_dir(), SETTINGS_FILENAME) |
| 38 | window.open_file(file_path) |
| 39 | |
| 40 | |
| 41 | def open_u_sublime_settings(window): |
no test coverage detected