From 04f792752301bb17ad9c2b20d0fd4358c1387bb8 Mon Sep 17 00:00:00 2001 From: Dimox Date: Tue, 4 Jun 2013 15:23:31 +0400 Subject: [PATCH] 1 --- Context.sublime-menu | 13 + Find in Files.sublime-menu | 8 + Indentation.sublime-menu | 17 + Main.sublime-menu | 881 +++++++++++++++++++++++ README.md | 8 +- Side Bar Mount Point.sublime-menu | 4 + Side Bar.sublime-menu | 11 + Syntax.sublime-menu | 6 + Tab Context.sublime-menu | 8 + Widget Context.sublime-menu | 7 + backup/Context.sublime-menu | 13 + backup/Find in Files.sublime-menu | 8 + backup/Indentation.sublime-menu | 17 + backup/Main.sublime-menu | 881 +++++++++++++++++++++++ backup/Side Bar Mount Point.sublime-menu | 4 + backup/Side Bar.sublime-menu | 11 + backup/Syntax.sublime-menu | 6 + backup/Tab Context.sublime-menu | 8 + backup/Widget Context.sublime-menu | 7 + 19 files changed, 1914 insertions(+), 4 deletions(-) create mode 100644 Context.sublime-menu create mode 100644 Find in Files.sublime-menu create mode 100644 Indentation.sublime-menu create mode 100644 Main.sublime-menu create mode 100644 Side Bar Mount Point.sublime-menu create mode 100644 Side Bar.sublime-menu create mode 100644 Syntax.sublime-menu create mode 100644 Tab Context.sublime-menu create mode 100644 Widget Context.sublime-menu create mode 100644 backup/Context.sublime-menu create mode 100644 backup/Find in Files.sublime-menu create mode 100644 backup/Indentation.sublime-menu create mode 100644 backup/Main.sublime-menu create mode 100644 backup/Side Bar Mount Point.sublime-menu create mode 100644 backup/Side Bar.sublime-menu create mode 100644 backup/Syntax.sublime-menu create mode 100644 backup/Tab Context.sublime-menu create mode 100644 backup/Widget Context.sublime-menu diff --git a/Context.sublime-menu b/Context.sublime-menu new file mode 100644 index 0000000..c92f2d3 --- /dev/null +++ b/Context.sublime-menu @@ -0,0 +1,13 @@ +[ + { "command": "copy", "caption": "Копировать" }, + { "command": "cut", "caption": "Вырезать" }, + { "command": "paste", "caption": "Вставить" }, + { "caption": "-", "id": "selection" }, + { "command": "select_all", "caption": "Выделить всё" }, + { "caption": "-", "id": "file" }, + { "command": "open_in_browser", "caption": "Открыть в браузере" }, + { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Открыть папку файла…" }, + { "command": "copy_path", "caption": "Копировать путь к файлу" }, + { "command": "reveal_in_side_bar", "caption": "Показать в боковой панели" }, + { "caption": "-", "id": "end" } +] diff --git a/Find in Files.sublime-menu b/Find in Files.sublime-menu new file mode 100644 index 0000000..4b7d222 --- /dev/null +++ b/Find in Files.sublime-menu @@ -0,0 +1,8 @@ +[ + { "command": "clear_location", "caption": "Очистить" }, + { "command": "add_directory", "caption": "Добавить папку" }, + { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Фильтр файлов по маске" }, + { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Исключить файлы по маске" }, + { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые папки" }, + { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые файлы" } +] diff --git a/Indentation.sublime-menu b/Indentation.sublime-menu new file mode 100644 index 0000000..bcd2157 --- /dev/null +++ b/Indentation.sublime-menu @@ -0,0 +1,17 @@ +[ + { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "Использовать в отступах пробелы", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "Размер отступа: 1", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "Размер отступа: 2", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "Размер отступа: 3", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "Размер отступа: 4", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "Размер отступа: 5", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "Размер отступа: 6", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "Размер отступа: 7", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "Размер отступа: 8", "checkbox": true }, + { "caption": "-" }, + { "command": "detect_indentation", "caption": "Определить параметры из буфера" }, + { "caption": "-" }, + { "command": "expand_tabs", "caption": "Преобразовать отступы в пробелы", "args": {"set_translate_tabs": true} }, + { "command": "unexpand_tabs", "caption": "Преобразовать отступы в табуляцию", "args": {"set_translate_tabs": true} } + ] diff --git a/Main.sublime-menu b/Main.sublime-menu new file mode 100644 index 0000000..54b678f --- /dev/null +++ b/Main.sublime-menu @@ -0,0 +1,881 @@ +[ + { + "caption": "Файл", + "mnemonic": "F", + "id": "file", + "children": + [ + { "command": "new_file", "caption": "Новый файл", "caption": "Новый файл", "mnemonic": "N" }, + + { "command": "prompt_open_file", "caption": "Открыть файл…", "mnemonic": "O", "platform": "!OSX" }, + { "command": "prompt_open_folder", "caption": "Открыть папку…", "platform": "!OSX" }, + { "command": "prompt_open", "caption": "Открыть", "platform": "OSX" }, + { + "caption": "Недавно открытые", + "mnemonic": "R", + "children": + [ + { "command": "reopen_last_file", "caption": "Переоткрыть последний закрытый файл" }, + { "caption": "-" }, + { "command": "open_recent_file", "args": {"index": 0 } }, + { "command": "open_recent_file", "args": {"index": 1 } }, + { "command": "open_recent_file", "args": {"index": 2 } }, + { "command": "open_recent_file", "args": {"index": 3 } }, + { "command": "open_recent_file", "args": {"index": 4 } }, + { "command": "open_recent_file", "args": {"index": 5 } }, + { "command": "open_recent_file", "args": {"index": 6 } }, + { "command": "open_recent_file", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "open_recent_folder", "args": {"index": 0 } }, + { "command": "open_recent_folder", "args": {"index": 1 } }, + { "command": "open_recent_folder", "args": {"index": 2 } }, + { "command": "open_recent_folder", "args": {"index": 3 } }, + { "command": "open_recent_folder", "args": {"index": 4 } }, + { "command": "open_recent_folder", "args": {"index": 5 } }, + { "command": "open_recent_folder", "args": {"index": 6 } }, + { "command": "open_recent_folder", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "clear_recent_files", "caption": "Очистить список" } + ] + }, + { + "caption": "Переоткрыть в кодировке", + "children": + [ + { "caption": "UTF-8", "command": "reopen", "args": {"encoding": "utf-8" } }, + { "caption": "UTF-16 LE", "command": "reopen", "args": {"encoding": "utf-16 le" } }, + { "caption": "UTF-16 BE", "command": "reopen", "args": {"encoding": "utf-16 be" } }, + { "caption": "-" }, + { "caption": "Western (Windows 1252)", "command": "reopen", "args": {"encoding": "Western (Windows 1252)" } }, + { "caption": "Western (ISO 8859-1)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-1)" } }, + { "caption": "Western (ISO 8859-3)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-3)" } }, + { "caption": "Western (ISO 8859-15)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-15)" } }, + { "caption": "Western (Mac Roman)", "command": "reopen", "args": {"encoding": "Western (Mac Roman)" } }, + { "caption": "DOS (CP 437)", "command": "reopen", "args": {"encoding": "DOS (CP 437)" } }, + { "caption": "Arabic (Windows 1256)", "command": "reopen", "args": {"encoding": "Arabic (Windows 1256)" } }, + { "caption": "Arabic (ISO 8859-6)", "command": "reopen", "args": {"encoding": "Arabic (ISO 8859-6)" } }, + { "caption": "Baltic (Windows 1257)", "command": "reopen", "args": {"encoding": "Baltic (Windows 1257)" } }, + { "caption": "Baltic (ISO 8859-4)", "command": "reopen", "args": {"encoding": "Baltic (ISO 8859-4)" } }, + { "caption": "Celtic (ISO 8859-14)", "command": "reopen", "args": {"encoding": "Celtic (ISO 8859-14)" } }, + { "caption": "Central European (Windows 1250)", "command": "reopen", "args": {"encoding": "Central European (Windows 1250)" } }, + { "caption": "Central European (ISO 8859-2)", "command": "reopen", "args": {"encoding": "Central European (ISO 8859-2)" } }, + { "caption": "Cyrillic (Windows 1251)", "command": "reopen", "args": {"encoding": "Cyrillic (Windows 1251)" } }, + { "caption": "Cyrillic (Windows 866)", "command": "reopen", "args": {"encoding": "Cyrillic (Windows 866)" } }, + { "caption": "Cyrillic (ISO 8859-5)", "command": "reopen", "args": {"encoding": "Cyrillic (ISO 8859-5)" } }, + { "caption": "Cyrillic (KOI8-R)", "command": "reopen", "args": {"encoding": "Cyrillic (KOI8-R)" } }, + { "caption": "Cyrillic (KOI8-U)", "command": "reopen", "args": {"encoding": "Cyrillic (KOI8-U)" } }, + { "caption": "Estonian (ISO 8859-13)", "command": "reopen", "args": {"encoding": "Estonian (ISO 8859-13)" } }, + { "caption": "Greek (Windows 1253)", "command": "reopen", "args": {"encoding": "Greek (Windows 1253)" } }, + { "caption": "Greek (ISO 8859-7)", "command": "reopen", "args": {"encoding": "Greek (ISO 8859-7)" } }, + { "caption": "Hebrew (Windows 1255)", "command": "reopen", "args": {"encoding": "Hebrew (Windows 1255)" } }, + { "caption": "Hebrew (ISO 8859-8)", "command": "reopen", "args": {"encoding": "Hebrew (ISO 8859-8)" } }, + { "caption": "Nordic (ISO 8859-10)", "command": "reopen", "args": {"encoding": "Nordic (ISO 8859-10)" } }, + { "caption": "Romanian (ISO 8859-16)", "command": "reopen", "args": {"encoding": "Romanian (ISO 8859-16)" } }, + { "caption": "Turkish (Windows 1254)", "command": "reopen", "args": {"encoding": "Turkish (Windows 1254)" } }, + { "caption": "Turkish (ISO 8859-9)", "command": "reopen", "args": {"encoding": "Turkish (ISO 8859-9)" } }, + { "caption": "Vietnamese (Windows 1258)", "command": "reopen", "args": {"encoding": "Vietnamese (Windows 1258)" } }, + { "caption": "-" }, + { "caption": "Hexadecimal", "command": "reopen", "args": {"encoding": "Hexadecimal" } } + ] + }, + { "command": "clone_file", "caption": "Дублировать активную вкладку", "mnemonic": "e" }, + { "command": "save", "caption": "Сохранить", "mnemonic": "S" }, + { + "caption": "Сохранить в кодировке", + "children": + [ + { "caption": "UTF-8", "command": "save", "args": {"encoding": "utf-8" } }, + { "caption": "UTF-8 + BOM", "command": "save", "args": {"encoding": "utf-8 with bom" } }, + { "caption": "UTF-16 LE", "command": "save", "args": {"encoding": "utf-16 le" } }, + { "caption": "UTF-16 LE + BOM", "command": "save", "args": {"encoding": "utf-16 le with bom" } }, + { "caption": "UTF-16 BE", "command": "save", "args": {"encoding": "utf-16 be" } }, + { "caption": "UTF-16 BE + BOM", "command": "save", "args": {"encoding": "utf-16 be with bom" } }, + { "caption": "-" }, + { "caption": "Western (Windows 1252)", "command": "save", "args": {"encoding": "Western (Windows 1252)" } }, + { "caption": "Western (ISO 8859-1)", "command": "save", "args": {"encoding": "Western (ISO 8859-1)" } }, + { "caption": "Western (ISO 8859-3)", "command": "save", "args": {"encoding": "Western (ISO 8859-3)" } }, + { "caption": "Western (ISO 8859-15)", "command": "save", "args": {"encoding": "Western (ISO 8859-15)" } }, + { "caption": "Western (Mac Roman)", "command": "save", "args": {"encoding": "Western (Mac Roman)" } }, + { "caption": "DOS (CP 437)", "command": "save", "args": {"encoding": "DOS (CP 437)" } }, + { "caption": "Arabic (Windows 1256)", "command": "save", "args": {"encoding": "Arabic (Windows 1256)" } }, + { "caption": "Arabic (ISO 8859-6)", "command": "save", "args": {"encoding": "Arabic (ISO 8859-6)" } }, + { "caption": "Baltic (Windows 1257)", "command": "save", "args": {"encoding": "Baltic (Windows 1257)" } }, + { "caption": "Baltic (ISO 8859-4)", "command": "save", "args": {"encoding": "Baltic (ISO 8859-4)" } }, + { "caption": "Celtic (ISO 8859-14)", "command": "save", "args": {"encoding": "Celtic (ISO 8859-14)" } }, + { "caption": "Central European (Windows 1250)", "command": "save", "args": {"encoding": "Central European (Windows 1250)" } }, + { "caption": "Central European (ISO 8859-2)", "command": "save", "args": {"encoding": "Central European (ISO 8859-2)" } }, + { "caption": "Cyrillic (Windows 1251)", "command": "save", "args": {"encoding": "Cyrillic (Windows 1251)" } }, + { "caption": "Cyrillic (Windows 866)", "command": "save", "args": {"encoding": "Cyrillic (Windows 866)" } }, + { "caption": "Cyrillic (ISO 8859-5)", "command": "save", "args": {"encoding": "Cyrillic (ISO 8859-5)" } }, + { "caption": "Cyrillic (KOI8-R)", "command": "save", "args": {"encoding": "Cyrillic (KOI8-R)" } }, + { "caption": "Cyrillic (KOI8-U)", "command": "save", "args": {"encoding": "Cyrillic (KOI8-U)" } }, + { "caption": "Estonian (ISO 8859-13)", "command": "save", "args": {"encoding": "Estonian (ISO 8859-13)" } }, + { "caption": "Greek (Windows 1253)", "command": "save", "args": {"encoding": "Greek (Windows 1253)" } }, + { "caption": "Greek (ISO 8859-7)", "command": "save", "args": {"encoding": "Greek (ISO 8859-7)" } }, + { "caption": "Hebrew (Windows 1255)", "command": "save", "args": {"encoding": "Hebrew (Windows 1255)" } }, + { "caption": "Hebrew (ISO 8859-8)", "command": "save", "args": {"encoding": "Hebrew (ISO 8859-8)" } }, + { "caption": "Nordic (ISO 8859-10)", "command": "save", "args": {"encoding": "Nordic (ISO 8859-10)" } }, + { "caption": "Romanian (ISO 8859-16)", "command": "save", "args": {"encoding": "Romanian (ISO 8859-16)" } }, + { "caption": "Turkish (Windows 1254)", "command": "save", "args": {"encoding": "Turkish (Windows 1254)" } }, + { "caption": "Turkish (ISO 8859-9)", "command": "save", "args": {"encoding": "Turkish (ISO 8859-9)" } }, + { "caption": "Vietnamese (Windows 1258)", "command": "save", "args": {"encoding": "Vietnamese (Windows 1258)" } }, + { "caption": "-" }, + { "caption": "Hexadecimal", "command": "save", "args": {"encoding": "Hexadecimal" } } + ] + }, + { "command": "prompt_save_as", "caption": "Сохранить как…", "mnemonic": "A" }, + { "command": "save_all", "caption": "Сохранить все", "mnemonic": "l" }, + { "caption": "-", "id": "window" }, + { "command": "new_window", "caption": "Новое окно", "mnemonic": "W" }, + { "command": "close_window", "caption": "Закрыть окно" }, + { "caption": "-", "id": "close" }, + { "command": "close", "caption": "Закрыть файл", "mnemonic": "C" }, + { "command": "revert", "caption": "Перезагрузить файл", "mnemonic": "v" }, + { "command": "close_all", "caption": "Закрыть все файлы" }, + { "caption": "-", "id": "exit" }, + { "command": "exit", "caption": "Выход", "mnemonic": "x" } + ] + }, + { + "caption": "Правка", + "mnemonic": "E", + "id": "edit", + "children": + [ + { "command": "undo", "caption": "Отменить", "mnemonic": "U" }, + { "command": "redo_or_repeat", "caption": "Вернуть", "mnemonic": "R" }, + { + "caption": "Отменить множественное выделение", + "children": + [ + { "command": "soft_undo", "caption": "Мягкая отмена" }, + { "command": "soft_redo", "caption": "Мягкий повтор" } + ] + }, + { "caption": "-", "id": "clipboard" }, + { "command": "copy", "caption": "Копировать", "mnemonic": "C" }, + { "command": "cut", "caption": "Вырезать", "mnemonic": "n" }, + { "command": "paste", "caption": "Вставить", "mnemonic": "P" }, + { "command": "paste_and_indent", "caption": "Вставить с отступами", "mnemonic": "I" }, + { "command": "paste_from_history", "caption": "Вставить из истории" }, + { "caption": "-" }, + { + "caption": "Строка", "mnemonic": "L", + "id": "line", + "children": + [ + { "command": "indent", "caption": "Увеличить отступ" }, + { "command": "unindent", "caption": "Уменьшить отступ" }, + { "command": "reindent", "caption": "Расставить правильные отступы", "args": {"single_line": true} }, + { "command": "swap_line_up", "caption": "Переместить строку вверх" }, + { "command": "swap_line_down", "caption": "Переместить строку вниз" }, + { "command": "duplicate_line", "caption": "Дублировать строку" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"}, "caption": "Удалить строку" }, + { "command": "join_lines", "caption": "Объединить строки" } + ] + }, + { + "caption": "Комментирование", "mnemonic": "m", + "id": "comment", + "children": + [ + { "command": "toggle_comment", "args": {"block": false}, "caption": "Переключить комментарий" }, + { "command": "toggle_comment", "args": {"block": true}, "caption": "Переключить блочный комментарий" } + ] + }, + { + "caption": "Текст", "mnemonic": "T", + "id": "text", + "children": + [ + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line Before.sublime-macro"}, "caption": "Вставить строку перед текущей строкой" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"}, "caption": "Вставить строку после текущей строки" }, + { "caption": "-" }, + { "command": "delete_word", "args": { "forward": true }, "caption": "Удалить слово после каретки" }, + { "command": "delete_word", "args": { "forward": false }, "caption": "Удалить слово перед кареткой" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"}, "caption": "Удалить строку" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard EOL.sublime-macro"}, "caption": "Удалить от каретки до конца строки" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard BOL.sublime-macro"}, "caption": "Удалить от каретки до начала строки" }, + { "caption": "-" }, + { "command": "transpose", "caption": "Поменять местами" } + ] + }, + { + "caption": "Тег", + "id": "tag", + "children": + [ + { "command": "close_tag", "caption": "Закрыть тег" }, + { "command": "expand_selection", "args": {"to": "tag"}, "caption": "Выделить до тега" }, + { "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" }, "caption": "Обернуть выделенное тегом" } + ] + }, + { + "caption": "Метка", + "id": "mark", + "children": + [ + { "command": "set_mark", "caption": "Установить метку" }, + { "command": "select_to_mark", "caption": "Выделить текст до метки", "caption": "Выделить до метки" }, + { "command": "delete_to_mark", "caption": "Выделить текст до метки", "caption": "Удалить до метки" }, + { "command": "swap_with_mark", "caption": "Поменять местами строку с меткой и текущую строку", "caption": "Поменяться с меткой" }, + { "command": "clear_bookmarks", "caption": "Удалить закладки", "args": {"name": "mark"}, "caption": "Удалить метку" }, + { "caption": "-" }, + { "command": "yank" } + ] + }, + { + "caption": "Сворачивание кода", + "id": "fold", + "children": + [ + { "command": "fold", "caption": "Свернуть" }, + { "command": "unfold", "caption": "Развернуть" }, + { "command": "unfold_all", "caption": "Развернуть все" }, + { "caption": "-" }, + { "caption": "Свернуть все", "command": "fold_by_level", "args": {"level": 1} }, + { "caption": "Свернуть 2-й уровень", "command": "fold_by_level", "args": {"level": 2} }, + { "caption": "Свернуть 3-й уровень", "command": "fold_by_level", "args": {"level": 3} }, + { "caption": "Свернуть 4-й уровень", "command": "fold_by_level", "args": {"level": 4} }, + { "caption": "Свернуть 5-й уровень", "command": "fold_by_level", "args": {"level": 5} }, + { "caption": "Свернуть 6-й уровень", "command": "fold_by_level", "args": {"level": 6} }, + { "caption": "Свернуть 7-й уровень", "command": "fold_by_level", "args": {"level": 7} }, + { "caption": "Свернуть 8-й уровень", "command": "fold_by_level", "args": {"level": 8} }, + { "caption": "Свернуть 9-й уровень", "command": "fold_by_level", "args": {"level": 9} }, + { "caption": "-" }, + { "command": "fold_tag_attributes", "caption": "Свернуть атрибуты тегов" } + ] + }, + { + "caption": "Изменить регистр", "mnemonic": "a", + "id": "convert_case", + "children": + [ + { "command": "title_case", "caption": "Все слова с заглавной" }, + { "command": "upper_case", "caption": "ПРОПИСНЫЕ" }, + { "command": "lower_case", "caption": "строчные" }, + { "command": "swap_case", "caption": "Инвертировать" } + ] + }, + { + "caption": "Ограничение текста", + "id": "wrap", + "children": + [ + { "command": "wrap_lines", "caption": "Ограничить текст по линейке" }, + { "command": "wrap_lines", "args": {"width": 70}, "caption": "Ограничить текст 70 знаками" }, + { "command": "wrap_lines", "args": {"width": 78}, "caption": "Ограничить текст 78 знаками" }, + { "command": "wrap_lines", "args": {"width": 80}, "caption": "Ограничить текст 80 знаками" }, + { "command": "wrap_lines", "args": {"width": 100}, "caption": "Ограничить текст 100 знаками" }, + { "command": "wrap_lines", "args": {"width": 120}, "caption": "Ограничить текст 120 знаками" } + ] + }, + { "command": "auto_complete", "caption": "Показать список автозавершения" }, + { "caption": "-", "id": "permute" }, + + { "command": "sort_lines", "args": {"case_sensitive": false}, "caption": "Сортировать строки", "mnemonic": "S" }, + { "command": "sort_lines", "args": {"case_sensitive": true}, "caption": "Сортировать строки (с учетом регистра)" }, + { + "caption": "Упорядочить строки", + "children": + [ + { "command": "permute_lines", "args": {"operation": "reverse"}, "caption": "В обратном порядке" }, + { "command": "permute_lines", "args": {"operation": "unique"}, "caption": "Удалить повторы" }, + { "command": "permute_lines", "args": {"operation": "shuffle"}, "caption": "Перемешать" } + ] + }, + { + "caption": "Упорядочить выделенные участки", + "children": + [ + { "command": "sort_selection", "args": {"case_sensitive": false}, "caption": "Сортировать" }, + { "command": "sort_selection", "args": {"case_sensitive": true}, "caption": "Сортировать (с учетом регистра)" }, + { "command": "permute_selection", "args": {"operation": "reverse"}, "caption": "В обратном порядке" }, + { "command": "permute_selection", "args": {"operation": "unique"}, "caption": "Удалить повторы" }, + { "command": "permute_selection", "args": {"operation": "shuffle"}, "caption": "Перемешать" } + ] + }, + { "caption": "-", "id": "end" } + ] + }, + { + "caption": "Выделение", + "mnemonic": "S", + "id": "selection", + "children": + [ + { "command": "split_selection_into_lines", "caption": "Разделить по строкам" }, + { "command": "select_lines", "args": {"forward": false}, "caption": "Добавить предыдущую строку" }, + { "command": "select_lines", "args": {"forward": true}, "caption": "Добавить следующую строку" }, + { "command": "single_selection", "caption": "Отменить множественное выделение" }, + { "command": "invert_selection", "caption": "Инвертировать выделение" }, + { "caption": "-" }, + { "command": "select_all", "caption": "Выделить всё" }, + { "command": "expand_selection", "args": {"to": "line"}, "caption": "Выделить строку" }, + { "command": "find_under_expand", "caption": "Выделить слово" }, + { "command": "expand_selection_to_paragraph", "caption": "Выделить абзац" }, + { "command": "expand_selection", "args": {"to": "scope"}, "caption": "Выделить до scope" }, + { "command": "expand_selection", "args": {"to": "brackets"}, "caption": "Выделить до скобок" }, + { "command": "expand_selection", "args": {"to": "indentation"}, "caption": "Выделить до отступа" }, + { "command": "expand_selection", "args": {"to": "tag"}, "caption": "Выделить до тега" } + ] + }, + { + "caption": "Поиск", + "mnemonic": "i", + "id": "find", + "children": + [ + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "find", "reverse": false}, "caption": "Найти…" }, + { "command": "find_next", "caption": "Найти следующее" }, + { "command": "find_prev", "caption": "Найти предыдущее" }, + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "incremental_find", "reverse": false}, "caption": "Поиск ''на лету''" }, + { "caption": "-" }, + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "replace", "reverse": false}, "caption": "Заменить…" }, + { "command": "replace_next", "caption": "Заменить следующее" }, + { "caption": "-" }, + { "command": "find_under", "caption": "Быстро найти" }, + { "command": "find_all_under", "caption": "Быстро найти все" }, + { "command": "find_under_expand", "caption": "Быстро добавить следующее" }, + { "command": "find_under_expand_skip", "caption": "Быстро пропустить следующее", "platform": "!OSX" }, + { "caption": "-" }, + { "command": "slurp_find_string", "caption": "Использовать выделенное для поиска" }, + { "command": "slurp_replace_string", "caption": "Использовать выделенное для замены" }, + { "caption": "-" }, + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "find_in_files"}, "caption": "Найти в файлах…" }, + { + "caption": "Результаты поиска", + "mnemonic": "R", + "children": + [ + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "output.find_results"}, "caption": "Показать окно с результатами поиска" }, + { "command": "next_result", "caption": "Следующий результат" }, + { "command": "prev_result", "caption": "Предыдущий результат" } + ] + } + ] + }, + { + "caption": "Вид", + "mnemonic": "V", + "id": "view", + "children": + [ + { + "caption": "Боковая панель", + "id": "side_bar", + "children": + [ + { "command": "toggle_side_bar", "caption": "Показать/Скрыть" }, + { "caption": "-" }, + { "command": "toggle_show_open_files", "caption": "Показать/Скрыть открытые файлы" } + ] + }, + { "command": "toggle_minimap", "caption": "Показать/Скрыть миникарту" }, + { "command": "toggle_tabs", "caption": "Показать/Скрыть вкладки" }, + { "command": "toggle_status_bar", "caption": "Показать/Скрыть панель состояния" }, + { "command": "toggle_menu", "caption": "Показать/Скрыть меню" }, + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "console", "toggle": true} }, + { "caption": "-", "id": "full_screen" }, + { "command": "toggle_full_screen", "caption": "Переключить режим полноэкранного просмотра" }, + { "command": "toggle_distraction_free", "caption": "Переключить отвлеченный режим" }, + { "caption": "-", "id": "groups" }, + { + "caption": "Разделение экрана", + "mnemonic": "L", + "id": "layout", + "children": + [ + { + "caption": "Один", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1]] + } + }, + { + "caption": "2 столбца", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.5, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1]] + } + }, + { + "caption": "3 столбца", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.33, 0.66, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]] + } + }, + { + "caption": "4 столбца", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.25, 0.5, 0.75, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1], [3, 0, 4, 1]] + } + }, + { + "caption": "2 строки", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 0.5, 1.0], + "cells": [[0, 0, 1, 1], [0, 1, 1, 2]] + } + }, + { + "caption": "3 строки", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 0.33, 0.66, 1.0], + "cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]] + } + }, + { + "caption": "Сетка 2х2", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.5, 1.0], + "rows": [0.0, 0.5, 1.0], + "cells": + [ + [0, 0, 1, 1], [1, 0, 2, 1], + [0, 1, 1, 2], [1, 1, 2, 2] + ] + } + } + ] + }, + { + "caption": "Группы", + "children": + [ + { "command": "new_pane", "caption": "Переместить файл в новую группу" }, + { "command": "new_pane", "args": {"move": false}, "caption": "Новая группа" }, + { "command": "close_pane", "caption": "Закрыть группу" }, + + { "caption": "-" }, + + { + "caption": "Максимум столбцов: 1", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 1 } + }, + { + "caption": "Максимум столбцов: 2", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 2 } + }, + { + "caption": "Максимум столбцов: 3", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 3 } + }, + { + "caption": "Максимум столбцов: 4", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 4 } + }, + { + "caption": "Максимум столбцов: 5", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 5 } + }, + ] + }, + { + "caption": "Фокус-группа", + "mnemonic": "F", + "children": + [ + + { "command": "focus_neighboring_group", "caption": "Следующая" }, + { "command": "focus_neighboring_group", "args": {"forward": false}, "caption": "Предыдущая" }, + { "caption": "-" }, + { "command": "focus_group", "args": {"group": 0}, "caption": "Группа 1" }, + { "command": "focus_group", "args": {"group": 1}, "caption": "Группа 2" }, + { "command": "focus_group", "args": {"group": 2}, "caption": "Группа 3" }, + { "command": "focus_group", "args": {"group": 3}, "caption": "Группа 4" } + ] + }, + { + "caption": "Переместить файл в группу", + "mnemonic": "M", + "children": + [ + { "command": "move_to_neighboring_group", "caption": "Следующая" }, + { "command": "move_to_neighboring_group", "args": {"forward": false}, "caption": "Предыдущая" }, + { "caption": "-" }, + { "command": "move_to_group", "args": {"group": 0}, "caption": "Группа 1" }, + { "command": "move_to_group", "args": {"group": 1}, "caption": "Группа 2" }, + { "command": "move_to_group", "args": {"group": 2}, "caption": "Группа 3" }, + { "command": "move_to_group", "args": {"group": 3}, "caption": "Группа 4" } + ] + }, + { "caption": "-" }, + { + "caption": "Синтаксис", + "mnemonic": "S", + "id": "syntax", + "children": [ { "command": "$file_types" } ] + }, + { + "caption": "Отступы", + "mnemonic": "I", + "id": "indentation", + "children": + [ + { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "Использовать в отступах пробелы", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "Размер отступа: 1", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "Размер отступа: 2", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "Размер отступа: 3", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "Размер отступа: 4", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "Размер отступа: 5", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "Размер отступа: 6", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "Размер отступа: 7", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "Размер отступа: 8", "checkbox": true }, + { "caption": "-" }, + { "command": "detect_indentation", "caption": "Определить параметры из буфера" }, + { "caption": "-" }, + { "command": "expand_tabs", "caption": "Преобразовать отступы в пробелы", "args": {"set_translate_tabs": true} }, + { "command": "unexpand_tabs", "caption": "Преобразовать отступы в табуляцию", "args": {"set_translate_tabs": true} } + ] + }, + { + "caption": "Формат конца строк", + "mnemonic": "n", + "id": "line_endings", + "children": + [ + { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows", "checkbox": true }, + { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix", "checkbox": true }, + { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9", "checkbox": true } + ] + }, + { "caption": "-", "id": "settings" }, + { "command": "toggle_setting", "args": {"setting": "word_wrap"}, "caption": "Перенос строк", "mnemonic": "w", "checkbox": true }, + { + "caption": "Ширина строк", + "children": + [ + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 0}, "caption": "Автоматическая", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 70}, "caption": "70 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 78}, "caption": "78 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 80}, "caption": "80 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 100}, "caption": "100 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 120}, "caption": "120 символов", "checkbox": true } + ] + }, + { + "caption": "Вертикальная граница", + "children": + [ + { "command": "set_setting", "args": {"setting": "rulers", "value": []}, "caption": "Нет", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [70]}, "caption": "70 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [78]}, "caption": "78 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [80]}, "caption": "80 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [100]}, "caption": "100 символов", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [120]}, "caption": "120 символов", "checkbox": true } + ] + }, + { "caption": "-" }, + { "command": "toggle_setting", "args": {"setting": "spell_check"}, "caption": "Проверка правописания", "checkbox": true }, + { "command": "next_misspelling", "caption": "Следующая ошибка правописания" }, + { "command": "prev_misspelling", "caption": "Предыдущая ошибка правописания" }, + { + "caption": "Словарь", + "children": [ { "command": "$dictionaries" } ] + } + ] + }, + { + "caption": "Перейти", + "mnemonic": "G", + "id": "goto", + "children": + [ + { "command": "show_overlay", "args": {"overlay": "goto", "show_files": true}, "caption": "Перейти к чему угодно…", "mnemonic": "A" }, + { "caption": "-" }, + { "command": "show_overlay", "args": {"overlay": "goto", "text": "@"}, "caption": "Перейти к идентификатору…" }, + { "command": "goto_symbol_in_project", "caption": "Перейти к идентификатору в проекте…" }, + { "command": "goto_definition", "caption": "Перейти к определению…" }, + // { "command": "show_overlay", "args": {"overlay": "goto", "text": "#"}, "caption": "Перейти к слову…" }, + { "command": "show_overlay", "args": {"overlay": "goto", "text": ":"}, "caption": "Перейти к строке…" }, + { "caption": "-" }, + { "command": "jump_back", "caption": "На предыдущую позицию" }, + { "command": "jump_forward", "caption": "На следующую позицию" }, + { "caption": "-" }, + { + "caption": "Переключение файлов", + "mnemonic": "t", + "id": "switch_file", + "children": + [ + { "command": "next_view", "caption": "Следующий файл" }, + { "command": "prev_view", "caption": "Предыдущий файл" }, + { "caption": "-" }, + { "command": "next_view_in_stack", "caption": "Следующий файл в стеке" }, + { "command": "prev_view_in_stack", "caption": "Предыдущий файл в стеке" }, + { "caption": "-" }, + { "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]}, "caption": "К объявлению/реализации", "mnemonic": "H" }, + { "caption": "-" }, + { "command": "select_by_index", "args": { "index": 0 } }, + { "command": "select_by_index", "args": { "index": 1 } }, + { "command": "select_by_index", "args": { "index": 2 } }, + { "command": "select_by_index", "args": { "index": 3 } }, + { "command": "select_by_index", "args": { "index": 4 } }, + { "command": "select_by_index", "args": { "index": 5 } }, + { "command": "select_by_index", "args": { "index": 6 } }, + { "command": "select_by_index", "args": { "index": 7 } }, + { "command": "select_by_index", "args": { "index": 8 } }, + { "command": "select_by_index", "args": { "index": 9 } } + ] + }, + { "caption": "-" }, + { + "caption": "Прокрутка", + "mnemonic": "S", + "id": "scroll", + "children": + [ + { "command": "show_at_center", "caption": "Прокрутить к выделенному" }, + { "command": "scroll_lines", "args": {"amount": 1.0 }, "caption": "На строку вверх" }, + { "command": "scroll_lines", "args": {"amount": -1.0 }, "caption": "На строку вниз" } + ] + }, + { + "caption": "Закладки", + "mnemonic": "b", + "id": "bookmarks", + "children": + [ + { "command": "toggle_bookmark", "caption": "Переключить закладку" }, + { "command": "next_bookmark", "caption": "Следующая закладка" }, + { "command": "prev_bookmark", "caption": "Предыдущая закладка" }, + { "command": "clear_bookmarks", "caption": "Удалить закладки" }, + { "command": "select_all_bookmarks", "caption": "Выделить все закладки" }, + { "caption": "-" }, + { "command": "select_bookmark", "args": {"index": 0} }, + { "command": "select_bookmark", "args": {"index": 1} }, + { "command": "select_bookmark", "args": {"index": 2} }, + { "command": "select_bookmark", "args": {"index": 3} }, + { "command": "select_bookmark", "args": {"index": 4} }, + { "command": "select_bookmark", "args": {"index": 5} }, + { "command": "select_bookmark", "args": {"index": 6} }, + { "command": "select_bookmark", "args": {"index": 7} }, + { "command": "select_bookmark", "args": {"index": 8} }, + { "command": "select_bookmark", "args": {"index": 9} }, + { "command": "select_bookmark", "args": {"index": 10} }, + { "command": "select_bookmark", "args": {"index": 11} }, + { "command": "select_bookmark", "args": {"index": 12} }, + { "command": "select_bookmark", "args": {"index": 13} }, + { "command": "select_bookmark", "args": {"index": 14} }, + { "command": "select_bookmark", "args": {"index": 15} } + ] + }, + { "caption": "-" }, + { "command": "move_to", "args": {"to": "brackets"}, "caption": "Перейти к парной скобке" } + ] + }, + { + "caption": "Инструменты", + "mnemonic": "T", + "id": "tools", + "children": + [ + { "command": "show_overlay", "args": {"overlay": "command_palette"}, "caption": "Командная панель…" }, + { "command": "show_overlay", "args": {"overlay": "command_palette", "text": "Snippet: "}, "caption": "Сниппеты" }, + { "caption": "-", "id": "build" }, + { + "caption": "Система сборки", + "mnemonic": "u", + "children": + [ + { "command": "set_build_system", "args": { "file": "" }, "caption": "Автоматическая", "checkbox": true }, + { "caption": "-" }, + { "command": "set_build_system", "args": {"index": 0}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 1}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 2}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 3}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 4}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 5}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 6}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 7}, "checkbox": true }, + { "command": "$build_systems" }, + { "caption": "-" }, + { "command": "new_build_system", "caption": "Новая система сборки…" } + ] + }, + { "command": "build", "caption": "Создать", "mnemonic": "B" }, + { "command": "build", "caption": "Создать", "args": {"variant": "Run"}, "mnemonic": "R" }, + { "command": "exec", "args": {"kill": true}, "caption": "Отменить создание", "mnemonic": "C" }, + { + "caption": "Результаты создания", + "mnemonic": "R", + "children": + [ + { "command": "show_panel", "caption": "Показать/Скрыть консоль", "args": {"panel": "output.exec"}, "caption": "Показать результаты создания", "mnemonic": "S" }, + { "command": "next_result", "caption": "Следующий результат", "mnemonic": "N" }, + { "command": "prev_result", "caption": "Предыдущий результат", "mnemonic": "P" } + ] + }, + { "command": "toggle_save_all_on_build", "caption": "Сохранить все после создания", "mnemonic": "A", "checkbox": true }, + { "caption": "-", "id": "macros" }, + { "command": "toggle_record_macro", "caption": "Начать/Остановить запись макроса", "mnemonic": "M" }, + { "command": "run_macro", "caption": "Запустить макрос", "mnemonic": "P" }, + { "command": "save_macro", "caption": "Сохранить макрос…", "mnemonic": "v" }, + { + "caption": "Макрос", + "children": [ { "command": "$macros" } ] + }, + { "caption": "-" }, + { "command": "new_plugin", "caption": "Новый плагин…" }, + { "command": "new_snippet", "caption": "Новый сниппет…" }, + { "caption": "-", "id": "end" } + ] + }, + { + "caption": "Проект", + "id": "project", + "mnemonic": "p", + "children": + [ + { "command": "prompt_open_project_or_workspace", "caption": "Открыть проект…" }, + { "command": "prompt_switch_project_or_workspace", "caption": "Переключить проект…" }, + { "command": "prompt_select_workspace", "caption": "Быстро переключить проект…", "mnemonic": "S" }, + { + "caption": "Недавно открытые", + "children": + [ + { "command": "open_recent_project_or_workspace", "args": {"index": 0 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 1 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 2 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 3 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 4 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 5 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 6 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "clear_recent_workspaces", "caption": "Очистить список" } + ] + }, + { "caption": "-" }, + { "command": "save_project_and_workspace_as", "caption": "Сохранить проект как…", "mnemonic": "A" }, + { "command": "close_workspace", "caption": "Закрыть проект", "mnemonic": "C" }, + { "command": "open_file", "args": {"file": "${project}"}, "caption": "Редактировать проект" }, + { "caption": "-" }, + { "command": "new_window_for_project", "caption": "Новое рабочее пространство для проекта" }, + { "command": "save_workspace_as", "caption": "Сохранить рабочее пространство как...", "mnemonic": "A" }, + { "caption": "-" }, + { "command": "prompt_add_folder", "caption": "Добавить папку в проект…", "mnemonic": "d" }, + { "command": "close_folder_list", "caption": "Удалить все папки из проекта", "mnemonic": "m" }, + { "command": "refresh_folder_list", "caption": "Обновить папки", "mnemonic": "e" }, + ] + }, + { + "caption": "Опции", + "mnemonic": "n", + "id": "preferences", + "children": + [ + { "command": "open_dir", "args": {"dir": "$packages"}, "caption": "Просмотр плагинов…", "mnemonic": "B" }, + { "caption": "-" }, + { "command": "open_file", "args": {"file": "${packages}/Default/Preferences.sublime-settings"}, "caption": "Настройки - По умолчанию" }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Preferences.sublime-settings", + "contents": "// Settings in here override those in \"Default/Preferences.sublime-settings\",\n// and are overridden in turn by file type specific settings.\n{\n\t$0\n}\n" + }, + "caption": "Настройки - Пользовательские" + }, + { + "caption": "Настройки - Дополнительно", + "children": + [ + { "command": "open_file_settings", "caption": "Специальный синтаксис - Пользовательские" }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Distraction Free.sublime-settings", + "contents": "{\n\t$0\n}\n" + }, + "caption": "Отвлеченный режим - Пользовательские" + } + ] + }, + { "caption": "-" }, + { + "command": "open_file", "args": + { + "file": "${packages}/Default/Default ($platform).sublime-keymap" + }, + "caption": "Горячие клавиши - По умолчанию" + }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Default ($platform).sublime-keymap", + "contents": "[\n\t$0\n]\n" + }, + "caption": "Горячие клавиши - Пользовательские" + }, + { "caption": "-" }, + { + "caption": "Размер текста", + "children": + [ + { "command": "increase_font_size", "caption": "Больше" }, + { "command": "decrease_font_size", "caption": "Меньше" }, + { "caption": "-" }, + { "command": "reset_font_size", "caption": "Сбросить" } + ] + }, + { + "caption": "Цветовая схема", + "children": [ { "command": "$color_schemes" } ] + } + ] + }, + { + "caption": "Справка", + "mnemonic": "H", + "id": "help", + "children": + [ + { "command": "open_url", "args": {"url": "http://www.sublimetext.com/docs/3/"}, "caption": "Документация" }, + { "command": "open_url", "args": {"url": "http://twitter.com/sublimehq"}, "caption": "Twitter" }, + { "caption": "-" }, + { "command": "purchase_license", "caption": "Купить лицензию"}, + { "command": "show_license_window", "caption": "Ввести лицензию" }, + { "command": "remove_license", "caption": "Удалить лицензию"}, + { "caption": "-" }, + { "command": "update_check", "caption": "Проверить наличие обновлений…", "platform": "!Linux" }, + { "command": "show_about_window", "caption": "О программе...", "mnemonic": "A" } + ] + } +] diff --git a/README.md b/README.md index a98e06f..88cfd88 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -SublimeText3RussianMenu -======================= - -Русифицированное меню для Sublime Text 3 +Русифицированное меню для Sublime Text 3 +=================== + +[Как установить] (http://dimox.name/sublime-text-russian-menu/#install) \ No newline at end of file diff --git a/Side Bar Mount Point.sublime-menu b/Side Bar Mount Point.sublime-menu new file mode 100644 index 0000000..e1ac608 --- /dev/null +++ b/Side Bar Mount Point.sublime-menu @@ -0,0 +1,4 @@ +[ + { "caption": "-", "id": "folder_commands" }, + { "caption": "Удалить папку из проекта", "command": "remove_folder", "args": { "dirs": []} } +] diff --git a/Side Bar.sublime-menu b/Side Bar.sublime-menu new file mode 100644 index 0000000..2031e73 --- /dev/null +++ b/Side Bar.sublime-menu @@ -0,0 +1,11 @@ +[ + { "caption": "Новый файл", "command": "new_file_at", "args": {"dirs": []} }, + { "caption": "Переименовать…", "command": "rename_path", "args": {"paths": []} }, + { "caption": "Удалить файл", "command": "delete_file", "args": {"files": []} }, + { "caption": "Открыть папку файла…", "command": "open_containing_folder", "args": {"files": []} }, + { "caption": "-", "id": "folder_commands" }, + { "caption": "Новая папка…", "command": "new_folder", "args": {"dirs": []} }, + { "caption": "Удалить папку", "command": "delete_folder", "args": {"dirs": []} }, + { "caption": "Найти в папке…", "command": "find_in_folder", "args": {"dirs": []} }, + { "caption": "-", "id": "end" } +] diff --git a/Syntax.sublime-menu b/Syntax.sublime-menu new file mode 100644 index 0000000..c2999a0 --- /dev/null +++ b/Syntax.sublime-menu @@ -0,0 +1,6 @@ +[ + { + "caption": "Синтаксис", + "children": [ { "command": "$file_types" } ] + } +] diff --git a/Tab Context.sublime-menu b/Tab Context.sublime-menu new file mode 100644 index 0000000..83797c6 --- /dev/null +++ b/Tab Context.sublime-menu @@ -0,0 +1,8 @@ +[ + { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть" }, + { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неактивные" }, + { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, + { "caption": "-" }, + { "command": "new_file", "caption": "Новый файл" }, + { "command": "prompt_open_file", "caption": "Открыть файл" } +] diff --git a/Widget Context.sublime-menu b/Widget Context.sublime-menu new file mode 100644 index 0000000..f427e3f --- /dev/null +++ b/Widget Context.sublime-menu @@ -0,0 +1,7 @@ +[ + { "command": "copy", "caption": "Копировать" }, + { "command": "cut", "caption": "Вырезать" }, + { "command": "paste", "caption": "Вставить" }, + { "caption": "-" }, + { "command": "select_all", "caption": "Выделить всё" } +] diff --git a/backup/Context.sublime-menu b/backup/Context.sublime-menu new file mode 100644 index 0000000..61a9de2 --- /dev/null +++ b/backup/Context.sublime-menu @@ -0,0 +1,13 @@ +[ + { "command": "copy" }, + { "command": "cut" }, + { "command": "paste" }, + { "caption": "-", "id": "selection" }, + { "command": "select_all" }, + { "caption": "-", "id": "file" }, + { "command": "open_in_browser", "caption": "Open in Browser" }, + { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, + { "command": "copy_path", "caption": "Copy File Path" }, + { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, + { "caption": "-", "id": "end" } +] diff --git a/backup/Find in Files.sublime-menu b/backup/Find in Files.sublime-menu new file mode 100644 index 0000000..2101553 --- /dev/null +++ b/backup/Find in Files.sublime-menu @@ -0,0 +1,8 @@ +[ + { "command": "clear_location", "caption": "Clear" }, + { "command": "add_directory", "caption": "Add Folder" }, + { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Add Include Filter" }, + { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Add Exclude Filter" }, + { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Folders" }, + { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Files" } +] diff --git a/backup/Indentation.sublime-menu b/backup/Indentation.sublime-menu new file mode 100644 index 0000000..96f3f6e --- /dev/null +++ b/backup/Indentation.sublime-menu @@ -0,0 +1,17 @@ +[ + { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "Indent Using Spaces", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "Tab Width: 1", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "Tab Width: 2", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "Tab Width: 3", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "Tab Width: 4", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "Tab Width: 5", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "Tab Width: 6", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "Tab Width: 7", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "Tab Width: 8", "checkbox": true }, + { "caption": "-" }, + { "command": "detect_indentation", "caption": "Guess Settings From Buffer" }, + { "caption": "-" }, + { "command": "expand_tabs", "caption": "Convert Indentation to Spaces", "args": {"set_translate_tabs": true} }, + { "command": "unexpand_tabs", "caption": "Convert Indentation to Tabs", "args": {"set_translate_tabs": true} } + ] diff --git a/backup/Main.sublime-menu b/backup/Main.sublime-menu new file mode 100644 index 0000000..cc0750c --- /dev/null +++ b/backup/Main.sublime-menu @@ -0,0 +1,881 @@ +[ + { + "caption": "File", + "mnemonic": "F", + "id": "file", + "children": + [ + { "command": "new_file", "caption": "New File", "mnemonic": "N" }, + + { "command": "prompt_open_file", "caption": "Open File…", "mnemonic": "O", "platform": "!OSX" }, + { "command": "prompt_open_folder", "caption": "Open Folder…", "platform": "!OSX" }, + { "command": "prompt_open", "caption": "Open…", "platform": "OSX" }, + { + "caption": "Open Recent", + "mnemonic": "R", + "children": + [ + { "command": "reopen_last_file", "caption": "Reopen Closed File" }, + { "caption": "-" }, + { "command": "open_recent_file", "args": {"index": 0 } }, + { "command": "open_recent_file", "args": {"index": 1 } }, + { "command": "open_recent_file", "args": {"index": 2 } }, + { "command": "open_recent_file", "args": {"index": 3 } }, + { "command": "open_recent_file", "args": {"index": 4 } }, + { "command": "open_recent_file", "args": {"index": 5 } }, + { "command": "open_recent_file", "args": {"index": 6 } }, + { "command": "open_recent_file", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "open_recent_folder", "args": {"index": 0 } }, + { "command": "open_recent_folder", "args": {"index": 1 } }, + { "command": "open_recent_folder", "args": {"index": 2 } }, + { "command": "open_recent_folder", "args": {"index": 3 } }, + { "command": "open_recent_folder", "args": {"index": 4 } }, + { "command": "open_recent_folder", "args": {"index": 5 } }, + { "command": "open_recent_folder", "args": {"index": 6 } }, + { "command": "open_recent_folder", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "clear_recent_files", "caption": "Clear Items" } + ] + }, + { + "caption": "Reopen with Encoding", + "children": + [ + { "caption": "UTF-8", "command": "reopen", "args": {"encoding": "utf-8" } }, + { "caption": "UTF-16 LE", "command": "reopen", "args": {"encoding": "utf-16 le" } }, + { "caption": "UTF-16 BE", "command": "reopen", "args": {"encoding": "utf-16 be" } }, + { "caption": "-" }, + { "caption": "Western (Windows 1252)", "command": "reopen", "args": {"encoding": "Western (Windows 1252)" } }, + { "caption": "Western (ISO 8859-1)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-1)" } }, + { "caption": "Western (ISO 8859-3)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-3)" } }, + { "caption": "Western (ISO 8859-15)", "command": "reopen", "args": {"encoding": "Western (ISO 8859-15)" } }, + { "caption": "Western (Mac Roman)", "command": "reopen", "args": {"encoding": "Western (Mac Roman)" } }, + { "caption": "DOS (CP 437)", "command": "reopen", "args": {"encoding": "DOS (CP 437)" } }, + { "caption": "Arabic (Windows 1256)", "command": "reopen", "args": {"encoding": "Arabic (Windows 1256)" } }, + { "caption": "Arabic (ISO 8859-6)", "command": "reopen", "args": {"encoding": "Arabic (ISO 8859-6)" } }, + { "caption": "Baltic (Windows 1257)", "command": "reopen", "args": {"encoding": "Baltic (Windows 1257)" } }, + { "caption": "Baltic (ISO 8859-4)", "command": "reopen", "args": {"encoding": "Baltic (ISO 8859-4)" } }, + { "caption": "Celtic (ISO 8859-14)", "command": "reopen", "args": {"encoding": "Celtic (ISO 8859-14)" } }, + { "caption": "Central European (Windows 1250)", "command": "reopen", "args": {"encoding": "Central European (Windows 1250)" } }, + { "caption": "Central European (ISO 8859-2)", "command": "reopen", "args": {"encoding": "Central European (ISO 8859-2)" } }, + { "caption": "Cyrillic (Windows 1251)", "command": "reopen", "args": {"encoding": "Cyrillic (Windows 1251)" } }, + { "caption": "Cyrillic (Windows 866)", "command": "reopen", "args": {"encoding": "Cyrillic (Windows 866)" } }, + { "caption": "Cyrillic (ISO 8859-5)", "command": "reopen", "args": {"encoding": "Cyrillic (ISO 8859-5)" } }, + { "caption": "Cyrillic (KOI8-R)", "command": "reopen", "args": {"encoding": "Cyrillic (KOI8-R)" } }, + { "caption": "Cyrillic (KOI8-U)", "command": "reopen", "args": {"encoding": "Cyrillic (KOI8-U)" } }, + { "caption": "Estonian (ISO 8859-13)", "command": "reopen", "args": {"encoding": "Estonian (ISO 8859-13)" } }, + { "caption": "Greek (Windows 1253)", "command": "reopen", "args": {"encoding": "Greek (Windows 1253)" } }, + { "caption": "Greek (ISO 8859-7)", "command": "reopen", "args": {"encoding": "Greek (ISO 8859-7)" } }, + { "caption": "Hebrew (Windows 1255)", "command": "reopen", "args": {"encoding": "Hebrew (Windows 1255)" } }, + { "caption": "Hebrew (ISO 8859-8)", "command": "reopen", "args": {"encoding": "Hebrew (ISO 8859-8)" } }, + { "caption": "Nordic (ISO 8859-10)", "command": "reopen", "args": {"encoding": "Nordic (ISO 8859-10)" } }, + { "caption": "Romanian (ISO 8859-16)", "command": "reopen", "args": {"encoding": "Romanian (ISO 8859-16)" } }, + { "caption": "Turkish (Windows 1254)", "command": "reopen", "args": {"encoding": "Turkish (Windows 1254)" } }, + { "caption": "Turkish (ISO 8859-9)", "command": "reopen", "args": {"encoding": "Turkish (ISO 8859-9)" } }, + { "caption": "Vietnamese (Windows 1258)", "command": "reopen", "args": {"encoding": "Vietnamese (Windows 1258)" } }, + { "caption": "-" }, + { "caption": "Hexadecimal", "command": "reopen", "args": {"encoding": "Hexadecimal" } } + ] + }, + { "command": "clone_file", "caption": "New View into File", "mnemonic": "e" }, + { "command": "save", "caption": "Save", "mnemonic": "S" }, + { + "caption": "Save with Encoding", + "children": + [ + { "caption": "UTF-8", "command": "save", "args": {"encoding": "utf-8" } }, + { "caption": "UTF-8 with BOM", "command": "save", "args": {"encoding": "utf-8 with bom" } }, + { "caption": "UTF-16 LE", "command": "save", "args": {"encoding": "utf-16 le" } }, + { "caption": "UTF-16 LE with BOM", "command": "save", "args": {"encoding": "utf-16 le with bom" } }, + { "caption": "UTF-16 BE", "command": "save", "args": {"encoding": "utf-16 be" } }, + { "caption": "UTF-16 BE with BOM", "command": "save", "args": {"encoding": "utf-16 be with bom" } }, + { "caption": "-" }, + { "caption": "Western (Windows 1252)", "command": "save", "args": {"encoding": "Western (Windows 1252)" } }, + { "caption": "Western (ISO 8859-1)", "command": "save", "args": {"encoding": "Western (ISO 8859-1)" } }, + { "caption": "Western (ISO 8859-3)", "command": "save", "args": {"encoding": "Western (ISO 8859-3)" } }, + { "caption": "Western (ISO 8859-15)", "command": "save", "args": {"encoding": "Western (ISO 8859-15)" } }, + { "caption": "Western (Mac Roman)", "command": "save", "args": {"encoding": "Western (Mac Roman)" } }, + { "caption": "DOS (CP 437)", "command": "save", "args": {"encoding": "DOS (CP 437)" } }, + { "caption": "Arabic (Windows 1256)", "command": "save", "args": {"encoding": "Arabic (Windows 1256)" } }, + { "caption": "Arabic (ISO 8859-6)", "command": "save", "args": {"encoding": "Arabic (ISO 8859-6)" } }, + { "caption": "Baltic (Windows 1257)", "command": "save", "args": {"encoding": "Baltic (Windows 1257)" } }, + { "caption": "Baltic (ISO 8859-4)", "command": "save", "args": {"encoding": "Baltic (ISO 8859-4)" } }, + { "caption": "Celtic (ISO 8859-14)", "command": "save", "args": {"encoding": "Celtic (ISO 8859-14)" } }, + { "caption": "Central European (Windows 1250)", "command": "save", "args": {"encoding": "Central European (Windows 1250)" } }, + { "caption": "Central European (ISO 8859-2)", "command": "save", "args": {"encoding": "Central European (ISO 8859-2)" } }, + { "caption": "Cyrillic (Windows 1251)", "command": "save", "args": {"encoding": "Cyrillic (Windows 1251)" } }, + { "caption": "Cyrillic (Windows 866)", "command": "save", "args": {"encoding": "Cyrillic (Windows 866)" } }, + { "caption": "Cyrillic (ISO 8859-5)", "command": "save", "args": {"encoding": "Cyrillic (ISO 8859-5)" } }, + { "caption": "Cyrillic (KOI8-R)", "command": "save", "args": {"encoding": "Cyrillic (KOI8-R)" } }, + { "caption": "Cyrillic (KOI8-U)", "command": "save", "args": {"encoding": "Cyrillic (KOI8-U)" } }, + { "caption": "Estonian (ISO 8859-13)", "command": "save", "args": {"encoding": "Estonian (ISO 8859-13)" } }, + { "caption": "Greek (Windows 1253)", "command": "save", "args": {"encoding": "Greek (Windows 1253)" } }, + { "caption": "Greek (ISO 8859-7)", "command": "save", "args": {"encoding": "Greek (ISO 8859-7)" } }, + { "caption": "Hebrew (Windows 1255)", "command": "save", "args": {"encoding": "Hebrew (Windows 1255)" } }, + { "caption": "Hebrew (ISO 8859-8)", "command": "save", "args": {"encoding": "Hebrew (ISO 8859-8)" } }, + { "caption": "Nordic (ISO 8859-10)", "command": "save", "args": {"encoding": "Nordic (ISO 8859-10)" } }, + { "caption": "Romanian (ISO 8859-16)", "command": "save", "args": {"encoding": "Romanian (ISO 8859-16)" } }, + { "caption": "Turkish (Windows 1254)", "command": "save", "args": {"encoding": "Turkish (Windows 1254)" } }, + { "caption": "Turkish (ISO 8859-9)", "command": "save", "args": {"encoding": "Turkish (ISO 8859-9)" } }, + { "caption": "Vietnamese (Windows 1258)", "command": "save", "args": {"encoding": "Vietnamese (Windows 1258)" } }, + { "caption": "-" }, + { "caption": "Hexadecimal", "command": "save", "args": {"encoding": "Hexadecimal" } } + ] + }, + { "command": "prompt_save_as", "caption": "Save As…", "mnemonic": "A" }, + { "command": "save_all", "caption": "Save All", "mnemonic": "l" }, + { "caption": "-", "id": "window" }, + { "command": "new_window", "caption": "New Window", "mnemonic": "W" }, + { "command": "close_window", "caption": "Close Window" }, + { "caption": "-", "id": "close" }, + { "command": "close", "caption": "Close File", "mnemonic": "C" }, + { "command": "revert", "caption": "Revert File", "mnemonic": "v" }, + { "command": "close_all", "caption": "Close All Files" }, + { "caption": "-", "id": "exit" }, + { "command": "exit", "mnemonic": "x" } + ] + }, + { + "caption": "Edit", + "mnemonic": "E", + "id": "edit", + "children": + [ + { "command": "undo", "mnemonic": "U" }, + { "command": "redo_or_repeat", "mnemonic": "R" }, + { + "caption": "Undo Selection", + "children": + [ + { "command": "soft_undo" }, + { "command": "soft_redo" } + ] + }, + { "caption": "-", "id": "clipboard" }, + { "command": "copy", "mnemonic": "C" }, + { "command": "cut", "mnemonic": "n" }, + { "command": "paste", "mnemonic": "P" }, + { "command": "paste_and_indent", "mnemonic": "I" }, + { "command": "paste_from_history", "caption": "Paste from History" }, + { "caption": "-" }, + { + "caption": "Line", "mnemonic": "L", + "id": "line", + "children": + [ + { "command": "indent" }, + { "command": "unindent" }, + { "command": "reindent", "args": {"single_line": true} }, + { "command": "swap_line_up" }, + { "command": "swap_line_down" }, + { "command": "duplicate_line" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"}, "caption": "Delete Line" }, + { "command": "join_lines" } + ] + }, + { + "caption": "Comment", "mnemonic": "m", + "id": "comment", + "children": + [ + { "command": "toggle_comment", "args": {"block": false}, "caption": "Toggle Comment" }, + { "command": "toggle_comment", "args": {"block": true}, "caption": "Toggle Block Comment" } + ] + }, + { + "caption": "Text", "mnemonic": "T", + "id": "text", + "children": + [ + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line Before.sublime-macro"}, "caption": "Insert Line Before" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"}, "caption": "Insert Line After" }, + { "caption": "-" }, + { "command": "delete_word", "args": { "forward": true }, "caption": "Delete Word Forward" }, + { "command": "delete_word", "args": { "forward": false }, "caption": "Delete Word Backward" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"}, "caption": "Delete Line" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard EOL.sublime-macro"}, "caption": "Delete to End" }, + { "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard BOL.sublime-macro"}, "caption": "Delete to Beginning" }, + { "caption": "-" }, + { "command": "transpose" } + ] + }, + { + "caption": "Tag", + "id": "tag", + "children": + [ + { "command": "close_tag" }, + { "command": "expand_selection", "args": {"to": "tag"}, "caption": "Expand Selection to Tag" }, + { "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" }, "caption": "Wrap Selection With Tag" } + ] + }, + { + "caption": "Mark", + "id": "mark", + "children": + [ + { "command": "set_mark" }, + { "command": "select_to_mark", "caption": "Select to Mark" }, + { "command": "delete_to_mark", "caption": "Delete to Mark" }, + { "command": "swap_with_mark", "caption": "Swap with Mark" }, + { "command": "clear_bookmarks", "args": {"name": "mark"}, "caption": "Clear Mark" }, + { "caption": "-" }, + { "command": "yank" } + ] + }, + { + "caption": "Code Folding", + "id": "fold", + "children": + [ + { "command": "fold" }, + { "command": "unfold" }, + { "command": "unfold_all", "caption": "Unfold All" }, + { "caption": "-" }, + { "caption": "Fold All", "command": "fold_by_level", "args": {"level": 1} }, + { "caption": "Fold Level 2", "command": "fold_by_level", "args": {"level": 2} }, + { "caption": "Fold Level 3", "command": "fold_by_level", "args": {"level": 3} }, + { "caption": "Fold Level 4", "command": "fold_by_level", "args": {"level": 4} }, + { "caption": "Fold Level 5", "command": "fold_by_level", "args": {"level": 5} }, + { "caption": "Fold Level 6", "command": "fold_by_level", "args": {"level": 6} }, + { "caption": "Fold Level 7", "command": "fold_by_level", "args": {"level": 7} }, + { "caption": "Fold Level 8", "command": "fold_by_level", "args": {"level": 8} }, + { "caption": "Fold Level 9", "command": "fold_by_level", "args": {"level": 9} }, + { "caption": "-" }, + { "command": "fold_tag_attributes", "caption": "Fold Tag Attributes" } + ] + }, + { + "caption": "Convert Case", "mnemonic": "a", + "id": "convert_case", + "children": + [ + { "command": "title_case", "caption": "Title Case" }, + { "command": "upper_case", "caption": "Upper Case" }, + { "command": "lower_case", "caption": "Lower Case" }, + { "command": "swap_case", "caption": "Swap Case" } + ] + }, + { + "caption": "Wrap", + "id": "wrap", + "children": + [ + { "command": "wrap_lines", "caption": "Wrap Paragraph at Ruler" }, + { "command": "wrap_lines", "args": {"width": 70}, "caption": "Wrap paragraph at 70 characters" }, + { "command": "wrap_lines", "args": {"width": 78}, "caption": "Wrap paragraph at 78 characters" }, + { "command": "wrap_lines", "args": {"width": 80}, "caption": "Wrap paragraph at 80 characters" }, + { "command": "wrap_lines", "args": {"width": 100}, "caption": "Wrap paragraph at 100 characters" }, + { "command": "wrap_lines", "args": {"width": 120}, "caption": "Wrap paragraph at 120 characters" } + ] + }, + { "command": "auto_complete", "caption": "Show Completions" }, + { "caption": "-", "id": "permute" }, + + { "command": "sort_lines", "args": {"case_sensitive": false}, "caption": "Sort Lines", "mnemonic": "S" }, + { "command": "sort_lines", "args": {"case_sensitive": true}, "caption": "Sort Lines (Case Sensitive)" }, + { + "caption": "Permute Lines", + "children": + [ + { "command": "permute_lines", "args": {"operation": "reverse"}, "caption": "Reverse" }, + { "command": "permute_lines", "args": {"operation": "unique"}, "caption": "Unique" }, + { "command": "permute_lines", "args": {"operation": "shuffle"}, "caption": "Shuffle" } + ] + }, + { + "caption": "Permute Selections", + "children": + [ + { "command": "sort_selection", "args": {"case_sensitive": false}, "caption": "Sort" }, + { "command": "sort_selection", "args": {"case_sensitive": true}, "caption": "Sort (Case Sensitive)" }, + { "command": "permute_selection", "args": {"operation": "reverse"}, "caption": "Reverse" }, + { "command": "permute_selection", "args": {"operation": "unique"}, "caption": "Unique" }, + { "command": "permute_selection", "args": {"operation": "shuffle"}, "caption": "Shuffle" } + ] + }, + { "caption": "-", "id": "end" } + ] + }, + { + "caption": "Selection", + "mnemonic": "S", + "id": "selection", + "children": + [ + { "command": "split_selection_into_lines", "caption": "Split into Lines" }, + { "command": "select_lines", "args": {"forward": false}, "caption": "Add Previous Line" }, + { "command": "select_lines", "args": {"forward": true}, "caption": "Add Next Line" }, + { "command": "single_selection" }, + { "command": "invert_selection" }, + { "caption": "-" }, + { "command": "select_all" }, + { "command": "expand_selection", "args": {"to": "line"}, "caption": "Expand Selection to Line" }, + { "command": "find_under_expand", "caption": "Expand Selection to Word" }, + { "command": "expand_selection_to_paragraph", "caption": "Expand Selection to Paragraph" }, + { "command": "expand_selection", "args": {"to": "scope"}, "caption": "Expand Selection to Scope" }, + { "command": "expand_selection", "args": {"to": "brackets"}, "caption": "Expand Selection to Brackets" }, + { "command": "expand_selection", "args": {"to": "indentation"}, "caption": "Expand Selection to Indentation" }, + { "command": "expand_selection", "args": {"to": "tag"}, "caption": "Expand Selection to Tag" } + ] + }, + { + "caption": "Find", + "mnemonic": "i", + "id": "find", + "children": + [ + { "command": "show_panel", "args": {"panel": "find", "reverse": false}, "caption": "Find…" }, + { "command": "find_next" }, + { "command": "find_prev", "caption": "Find Previous" }, + { "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false}, "caption": "Incremental Find" }, + { "caption": "-" }, + { "command": "show_panel", "args": {"panel": "replace", "reverse": false}, "caption": "Replace…" }, + { "command": "replace_next" }, + { "caption": "-" }, + { "command": "find_under", "caption": "Quick Find" }, + { "command": "find_all_under", "caption": "Quick Find All" }, + { "command": "find_under_expand", "caption": "Quick Add Next" }, + { "command": "find_under_expand_skip", "caption": "Quick Skip Next", "platform": "!OSX" }, + { "caption": "-" }, + { "command": "slurp_find_string", "caption": "Use Selection for Find" }, + { "command": "slurp_replace_string", "caption": "Use Selection for Replace" }, + { "caption": "-" }, + { "command": "show_panel", "args": {"panel": "find_in_files"}, "caption": "Find in Files…" }, + { + "caption": "Find Results", + "mnemonic": "R", + "children": + [ + { "command": "show_panel", "args": {"panel": "output.find_results"}, "caption": "Show Results Panel" }, + { "command": "next_result" }, + { "command": "prev_result", "caption": "Previous Result" } + ] + } + ] + }, + { + "caption": "View", + "mnemonic": "V", + "id": "view", + "children": + [ + { + "caption": "Side Bar", + "id": "side_bar", + "children": + [ + { "command": "toggle_side_bar" }, + { "caption": "-" }, + { "command": "toggle_show_open_files" } + ] + }, + { "command": "toggle_minimap" }, + { "command": "toggle_tabs" }, + { "command": "toggle_status_bar" }, + { "command": "toggle_menu" }, + { "command": "show_panel", "args": {"panel": "console", "toggle": true} }, + { "caption": "-", "id": "full_screen" }, + { "command": "toggle_full_screen" }, + { "command": "toggle_distraction_free" }, + { "caption": "-", "id": "groups" }, + { + "caption": "Layout", + "mnemonic": "L", + "id": "layout", + "children": + [ + { + "caption": "Single", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1]] + } + }, + { + "caption": "Columns: 2", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.5, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1]] + } + }, + { + "caption": "Columns: 3", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.33, 0.66, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]] + } + }, + { + "caption": "Columns: 4", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.25, 0.5, 0.75, 1.0], + "rows": [0.0, 1.0], + "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1], [3, 0, 4, 1]] + } + }, + { + "caption": "Rows: 2", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 0.5, 1.0], + "cells": [[0, 0, 1, 1], [0, 1, 1, 2]] + } + }, + { + "caption": "Rows: 3", + "command": "set_layout", + "args": + { + "cols": [0.0, 1.0], + "rows": [0.0, 0.33, 0.66, 1.0], + "cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]] + } + }, + { + "caption": "Grid: 4", + "command": "set_layout", + "args": + { + "cols": [0.0, 0.5, 1.0], + "rows": [0.0, 0.5, 1.0], + "cells": + [ + [0, 0, 1, 1], [1, 0, 2, 1], + [0, 1, 1, 2], [1, 1, 2, 2] + ] + } + } + ] + }, + { + "caption": "Groups", + "children": + [ + { "command": "new_pane", "caption": "Move File to New Group" }, + { "command": "new_pane", "args": {"move": false}, "caption": "New Group" }, + { "command": "close_pane", "caption": "Close Group" }, + + { "caption": "-" }, + + { + "caption": "Max Columns: 1", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 1 } + }, + { + "caption": "Max Columns: 2", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 2 } + }, + { + "caption": "Max Columns: 3", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 3 } + }, + { + "caption": "Max Columns: 4", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 4 } + }, + { + "caption": "Max Columns: 5", + "command": "set_max_columns", + "checkbox": true, + "args": { "columns": 5 } + }, + ] + }, + { + "caption": "Focus Group", + "mnemonic": "F", + "children": + [ + + { "command": "focus_neighboring_group", "caption": "Next" }, + { "command": "focus_neighboring_group", "args": {"forward": false}, "caption": "Previous" }, + { "caption": "-" }, + { "command": "focus_group", "args": {"group": 0}, "caption": "Group 1" }, + { "command": "focus_group", "args": {"group": 1}, "caption": "Group 2" }, + { "command": "focus_group", "args": {"group": 2}, "caption": "Group 3" }, + { "command": "focus_group", "args": {"group": 3}, "caption": "Group 4" } + ] + }, + { + "caption": "Move File to Group", + "mnemonic": "M", + "children": + [ + { "command": "move_to_neighboring_group", "caption": "Next" }, + { "command": "move_to_neighboring_group", "args": {"forward": false}, "caption": "Previous" }, + { "caption": "-" }, + { "command": "move_to_group", "args": {"group": 0}, "caption": "Group 1" }, + { "command": "move_to_group", "args": {"group": 1}, "caption": "Group 2" }, + { "command": "move_to_group", "args": {"group": 2}, "caption": "Group 3" }, + { "command": "move_to_group", "args": {"group": 3}, "caption": "Group 4" } + ] + }, + { "caption": "-" }, + { + "caption": "Syntax", + "mnemonic": "S", + "id": "syntax", + "children": [ { "command": "$file_types" } ] + }, + { + "caption": "Indentation", + "mnemonic": "I", + "id": "indentation", + "children": + [ + { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "Indent Using Spaces", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "Tab Width: 1", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "Tab Width: 2", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "Tab Width: 3", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "Tab Width: 4", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "Tab Width: 5", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "Tab Width: 6", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "Tab Width: 7", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "Tab Width: 8", "checkbox": true }, + { "caption": "-" }, + { "command": "detect_indentation", "caption": "Guess Settings From Buffer" }, + { "caption": "-" }, + { "command": "expand_tabs", "caption": "Convert Indentation to Spaces", "args": {"set_translate_tabs": true} }, + { "command": "unexpand_tabs", "caption": "Convert Indentation to Tabs", "args": {"set_translate_tabs": true} } + ] + }, + { + "caption": "Line Endings", + "mnemonic": "n", + "id": "line_endings", + "children": + [ + { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows", "checkbox": true }, + { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix", "checkbox": true }, + { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9", "checkbox": true } + ] + }, + { "caption": "-", "id": "settings" }, + { "command": "toggle_setting", "args": {"setting": "word_wrap"}, "caption": "Word Wrap", "mnemonic": "w", "checkbox": true }, + { + "caption": "Word Wrap Column", + "children": + [ + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 0}, "caption": "Automatic", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 70}, "caption": "70", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 78}, "caption": "78", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 80}, "caption": "80", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 100}, "caption": "100", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "wrap_width", "value": 120}, "caption": "120", "checkbox": true } + ] + }, + { + "caption": "Ruler", + "children": + [ + { "command": "set_setting", "args": {"setting": "rulers", "value": []}, "caption": "None", "checkbox": true }, + { "caption": "-" }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [70]}, "caption": "70", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [78]}, "caption": "78", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [80]}, "caption": "80", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [100]}, "caption": "100", "checkbox": true }, + { "command": "set_setting", "args": {"setting": "rulers", "value": [120]}, "caption": "120", "checkbox": true } + ] + }, + { "caption": "-" }, + { "command": "toggle_setting", "args": {"setting": "spell_check"}, "caption": "Spell Check", "checkbox": true }, + { "command": "next_misspelling" }, + { "command": "prev_misspelling" }, + { + "caption": "Dictionary", + "children": [ { "command": "$dictionaries" } ] + } + ] + }, + { + "caption": "Goto", + "mnemonic": "G", + "id": "goto", + "children": + [ + { "command": "show_overlay", "args": {"overlay": "goto", "show_files": true}, "caption": "Goto Anything…", "mnemonic": "A" }, + { "caption": "-" }, + { "command": "show_overlay", "args": {"overlay": "goto", "text": "@"}, "caption": "Goto Symbol…" }, + { "command": "goto_symbol_in_project", "caption": "Goto Symbol in Project…" }, + { "command": "goto_definition", "caption": "Goto Definition…" }, + // { "command": "show_overlay", "args": {"overlay": "goto", "text": "#"}, "caption": "Goto Word…" }, + { "command": "show_overlay", "args": {"overlay": "goto", "text": ":"}, "caption": "Goto Line…" }, + { "caption": "-" }, + { "command": "jump_back", "caption": "Jump Back" }, + { "command": "jump_forward", "caption": "Jump Forward" }, + { "caption": "-" }, + { + "caption": "Switch File", + "mnemonic": "t", + "id": "switch_file", + "children": + [ + { "command": "next_view", "caption": "Next File" }, + { "command": "prev_view", "caption": "Previous File" }, + { "caption": "-" }, + { "command": "next_view_in_stack", "caption": "Next File in Stack" }, + { "command": "prev_view_in_stack", "caption": "Previous File in Stack" }, + { "caption": "-" }, + { "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]}, "caption": "Switch Header/Implementation", "mnemonic": "H" }, + { "caption": "-" }, + { "command": "select_by_index", "args": { "index": 0 } }, + { "command": "select_by_index", "args": { "index": 1 } }, + { "command": "select_by_index", "args": { "index": 2 } }, + { "command": "select_by_index", "args": { "index": 3 } }, + { "command": "select_by_index", "args": { "index": 4 } }, + { "command": "select_by_index", "args": { "index": 5 } }, + { "command": "select_by_index", "args": { "index": 6 } }, + { "command": "select_by_index", "args": { "index": 7 } }, + { "command": "select_by_index", "args": { "index": 8 } }, + { "command": "select_by_index", "args": { "index": 9 } } + ] + }, + { "caption": "-" }, + { + "caption": "Scroll", + "mnemonic": "S", + "id": "scroll", + "children": + [ + { "command": "show_at_center", "caption": "Scroll to Selection" }, + { "command": "scroll_lines", "args": {"amount": 1.0 }, "caption": "Line Up" }, + { "command": "scroll_lines", "args": {"amount": -1.0 }, "caption": "Line Down" } + ] + }, + { + "caption": "Bookmarks", + "mnemonic": "b", + "id": "bookmarks", + "children": + [ + { "command": "toggle_bookmark" }, + { "command": "next_bookmark" }, + { "command": "prev_bookmark" }, + { "command": "clear_bookmarks" }, + { "command": "select_all_bookmarks" }, + { "caption": "-" }, + { "command": "select_bookmark", "args": {"index": 0} }, + { "command": "select_bookmark", "args": {"index": 1} }, + { "command": "select_bookmark", "args": {"index": 2} }, + { "command": "select_bookmark", "args": {"index": 3} }, + { "command": "select_bookmark", "args": {"index": 4} }, + { "command": "select_bookmark", "args": {"index": 5} }, + { "command": "select_bookmark", "args": {"index": 6} }, + { "command": "select_bookmark", "args": {"index": 7} }, + { "command": "select_bookmark", "args": {"index": 8} }, + { "command": "select_bookmark", "args": {"index": 9} }, + { "command": "select_bookmark", "args": {"index": 10} }, + { "command": "select_bookmark", "args": {"index": 11} }, + { "command": "select_bookmark", "args": {"index": 12} }, + { "command": "select_bookmark", "args": {"index": 13} }, + { "command": "select_bookmark", "args": {"index": 14} }, + { "command": "select_bookmark", "args": {"index": 15} } + ] + }, + { "caption": "-" }, + { "command": "move_to", "args": {"to": "brackets"}, "caption": "Jump to Matching Bracket" } + ] + }, + { + "caption": "Tools", + "mnemonic": "T", + "id": "tools", + "children": + [ + { "command": "show_overlay", "args": {"overlay": "command_palette"}, "caption": "Command Palette…" }, + { "command": "show_overlay", "args": {"overlay": "command_palette", "text": "Snippet: "}, "caption": "Snippets…" }, + { "caption": "-", "id": "build" }, + { + "caption": "Build System", + "mnemonic": "u", + "children": + [ + { "command": "set_build_system", "args": { "file": "" }, "caption": "Automatic", "checkbox": true }, + { "caption": "-" }, + { "command": "set_build_system", "args": {"index": 0}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 1}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 2}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 3}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 4}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 5}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 6}, "checkbox": true }, + { "command": "set_build_system", "args": {"index": 7}, "checkbox": true }, + { "command": "$build_systems" }, + { "caption": "-" }, + { "command": "new_build_system", "caption": "New Build System…" } + ] + }, + { "command": "build", "mnemonic": "B" }, + { "command": "build", "args": {"variant": "Run"}, "mnemonic": "R" }, + { "command": "exec", "args": {"kill": true}, "caption": "Cancel Build", "mnemonic": "C" }, + { + "caption": "Build Results", + "mnemonic": "R", + "children": + [ + { "command": "show_panel", "args": {"panel": "output.exec"}, "caption": "Show Build Results", "mnemonic": "S" }, + { "command": "next_result", "mnemonic": "N" }, + { "command": "prev_result", "caption": "Previous Result", "mnemonic": "P" } + ] + }, + { "command": "toggle_save_all_on_build", "caption": "Save All on Build", "mnemonic": "A", "checkbox": true }, + { "caption": "-", "id": "macros" }, + { "command": "toggle_record_macro", "mnemonic": "M" }, + { "command": "run_macro", "caption": "Playback Macro", "mnemonic": "P" }, + { "command": "save_macro", "caption": "Save Macro…", "mnemonic": "v" }, + { + "caption": "Macros", + "children": [ { "command": "$macros" } ] + }, + { "caption": "-" }, + { "command": "new_plugin", "caption": "New Plugin…" }, + { "command": "new_snippet", "caption": "New Snippet…" }, + { "caption": "-", "id": "end" } + ] + }, + { + "caption": "Project", + "id": "project", + "mnemonic": "p", + "children": + [ + { "command": "prompt_open_project_or_workspace", "caption": "Open Project…" }, + { "command": "prompt_switch_project_or_workspace", "caption": "Switch Project…" }, + { "command": "prompt_select_workspace", "caption": "Quick Switch Project…", "mnemonic": "S" }, + { + "caption": "Open Recent", + "children": + [ + { "command": "open_recent_project_or_workspace", "args": {"index": 0 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 1 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 2 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 3 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 4 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 5 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 6 } }, + { "command": "open_recent_project_or_workspace", "args": {"index": 7 } }, + { "caption": "-" }, + { "command": "clear_recent_workspaces", "caption": "Clear Items" } + ] + }, + { "caption": "-" }, + { "command": "save_project_and_workspace_as", "caption": "Save Project As…", "mnemonic": "A" }, + { "command": "close_workspace", "caption": "Close Project", "mnemonic": "C" }, + { "command": "open_file", "args": {"file": "${project}"}, "caption": "Edit Project" }, + { "caption": "-" }, + { "command": "new_window_for_project", "caption": "New Workspace for Project" }, + { "command": "save_workspace_as", "caption": "Save Workspace As…", "mnemonic": "A" }, + { "caption": "-" }, + { "command": "prompt_add_folder", "caption": "Add Folder to Project…", "mnemonic": "d" }, + { "command": "close_folder_list", "caption": "Remove all Folders from Project", "mnemonic": "m" }, + { "command": "refresh_folder_list", "caption": "Refresh Folders", "mnemonic": "e" }, + ] + }, + { + "caption": "Preferences", + "mnemonic": "n", + "id": "preferences", + "children": + [ + { "command": "open_dir", "args": {"dir": "$packages"}, "caption": "Browse Packages…", "mnemonic": "B" }, + { "caption": "-" }, + { "command": "open_file", "args": {"file": "${packages}/Default/Preferences.sublime-settings"}, "caption": "Settings – Default" }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Preferences.sublime-settings", + "contents": "// Settings in here override those in \"Default/Preferences.sublime-settings\",\n// and are overridden in turn by file type specific settings.\n{\n\t$0\n}\n" + }, + "caption": "Settings – User" + }, + { + "caption": "Settings – More", + "children": + [ + { "command": "open_file_settings", "caption": "Syntax Specific – User" }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Distraction Free.sublime-settings", + "contents": "{\n\t$0\n}\n" + }, + "caption": "Distraction Free – User" + } + ] + }, + { "caption": "-" }, + { + "command": "open_file", "args": + { + "file": "${packages}/Default/Default ($platform).sublime-keymap" + }, + "caption": "Key Bindings – Default" + }, + { + "command": "open_file", "args": + { + "file": "${packages}/User/Default ($platform).sublime-keymap", + "contents": "[\n\t$0\n]\n" + }, + "caption": "Key Bindings – User" + }, + { "caption": "-" }, + { + "caption": "Font", + "children": + [ + { "command": "increase_font_size", "caption": "Larger" }, + { "command": "decrease_font_size", "caption": "Smaller" }, + { "caption": "-" }, + { "command": "reset_font_size", "caption": "Reset" } + ] + }, + { + "caption": "Color Scheme", + "children": [ { "command": "$color_schemes" } ] + } + ] + }, + { + "caption": "Help", + "mnemonic": "H", + "id": "help", + "children": + [ + { "command": "open_url", "args": {"url": "http://www.sublimetext.com/docs/3/"}, "caption": "Documentation" }, + { "command": "open_url", "args": {"url": "http://twitter.com/sublimehq"}, "caption": "Twitter" }, + { "caption": "-" }, + { "command": "purchase_license"}, + { "command": "show_license_window", "caption": "Enter License" }, + { "command": "remove_license"}, + { "caption": "-" }, + { "command": "update_check", "caption": "Check for Updates…", "platform": "!Linux" }, + { "command": "show_about_window", "caption": "About Sublime Text", "mnemonic": "A" } + ] + } +] diff --git a/backup/Side Bar Mount Point.sublime-menu b/backup/Side Bar Mount Point.sublime-menu new file mode 100644 index 0000000..3411b67 --- /dev/null +++ b/backup/Side Bar Mount Point.sublime-menu @@ -0,0 +1,4 @@ +[ + { "caption": "-", "id": "folder_commands" }, + { "caption": "Remove Folder from Project", "command": "remove_folder", "args": { "dirs": []} } +] diff --git a/backup/Side Bar.sublime-menu b/backup/Side Bar.sublime-menu new file mode 100644 index 0000000..3d308b9 --- /dev/null +++ b/backup/Side Bar.sublime-menu @@ -0,0 +1,11 @@ +[ + { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, + { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, + { "caption": "Delete File", "command": "delete_file", "args": {"files": []} }, + { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, + { "caption": "-", "id": "folder_commands" }, + { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, + { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": []} }, + { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, + { "caption": "-", "id": "end" } +] diff --git a/backup/Syntax.sublime-menu b/backup/Syntax.sublime-menu new file mode 100644 index 0000000..b555b7b --- /dev/null +++ b/backup/Syntax.sublime-menu @@ -0,0 +1,6 @@ +[ + { + "caption": "Syntax", + "children": [ { "command": "$file_types" } ] + } +] diff --git a/backup/Tab Context.sublime-menu b/backup/Tab Context.sublime-menu new file mode 100644 index 0000000..b5781f0 --- /dev/null +++ b/backup/Tab Context.sublime-menu @@ -0,0 +1,8 @@ +[ + { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close" }, + { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close others" }, + { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close tabs to the right" }, + { "caption": "-" }, + { "command": "new_file" }, + { "command": "prompt_open_file", "caption": "Open file" } +] diff --git a/backup/Widget Context.sublime-menu b/backup/Widget Context.sublime-menu new file mode 100644 index 0000000..971328a --- /dev/null +++ b/backup/Widget Context.sublime-menu @@ -0,0 +1,7 @@ +[ + { "command": "copy" }, + { "command": "cut" }, + { "command": "paste" }, + { "caption": "-" }, + { "command": "select_all" } +]