This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
forked from Dimox/SublimeText3RussianMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
1,914 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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": "<open folders>"}, "caption": "Добавить открытые папки" }, | ||
{ "command": "add_where_snippet", "args": {"snippet": "<open files>"}, "caption": "Добавить открытые файлы" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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} } | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SublimeText3RussianMenu | ||
======================= | ||
|
||
Русифицированное меню для Sublime Text 3 | ||
Русифицированное меню для Sublime Text 3 | ||
=================== | ||
|
||
[Как установить] (http://dimox.name/sublime-text-russian-menu/#install) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{ "caption": "-", "id": "folder_commands" }, | ||
{ "caption": "Удалить папку из проекта", "command": "remove_folder", "args": { "dirs": []} } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{ | ||
"caption": "Синтаксис", | ||
"children": [ { "command": "$file_types" } ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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": "Открыть файл" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ "command": "copy", "caption": "Копировать" }, | ||
{ "command": "cut", "caption": "Вырезать" }, | ||
{ "command": "paste", "caption": "Вставить" }, | ||
{ "caption": "-" }, | ||
{ "command": "select_all", "caption": "Выделить всё" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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": "<open folders>"}, "caption": "Add Open Folders" }, | ||
{ "command": "add_where_snippet", "args": {"snippet": "<open files>"}, "caption": "Add Open Files" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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} } | ||
] |
Oops, something went wrong.