Created
June 7, 2018 19:46
-
-
Save agrublev/b93235dc8a371897cb0803f4d4bba14e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"type": "button", | |
"tooltip": "New File", | |
"callback": "application:new-file", | |
"icon": "plus", | |
"iconset": "ion" | |
}, { | |
"type": "button", | |
"tooltip": "Open File", | |
"callback": "application:open-file", | |
"icon": "document-text", | |
"iconset": "ion" | |
}, { | |
"type": "button", | |
"tooltip": "Open Folder", | |
"callback": "application:open-folder", | |
"icon": "folder", | |
"iconset": "ion" | |
}, { | |
"type": "button", | |
"tooltip": "Save File", | |
"callback": "core:save", | |
"icon": "archive", | |
"iconset": "ion" | |
}, { | |
"type": "button", | |
"tooltip": "Git Control", | |
"dependency": "git-control", | |
"callback": "git-control:toggle", | |
"icon": "bullseye", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Git Projects", | |
"dependency": "git-projects", | |
"callback": "git-projects:toggle", | |
"icon": "git", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "List projects", | |
"dependency": "project-manager", | |
"callback": "project-manager:list-projects", | |
"icon": "file-submodule" | |
}, { | |
"type": "spacer" | |
}, { | |
"type": "button", | |
"tooltip": "Split screen - Horizontally", | |
"callback": "pane:split-right", | |
"icon": "format-horizontal-align-center", | |
"iconset": "mdi" | |
}, { | |
"type": "button", | |
"tooltip": "Split screen - Vertically", | |
"callback": "pane:split-down", | |
"icon": "format-vertical-align-center", | |
"iconset": "mdi" | |
}, { | |
"type": "spacer" | |
}, { | |
"type": "button", | |
"tooltip": "Merge Conflicts", | |
"dependency": "merge-conflicts", | |
"callback": "merge-conflicts:detect", | |
"icon": "code-fork", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Toggle Fullscreen", | |
"callback": "window:toggle-full-screen", | |
"icon": "arrows-alt", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Toggle Sidebar", | |
"callback": "tree-view:toggle", | |
"icon": "sitemap", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Toggle Minimap", | |
"dependency": "minimap", | |
"callback": "minimap:toggle", | |
"icon": "map", | |
"iconset": "ion" | |
}, { | |
"type": "spacer" | |
}, { | |
"type": "button", | |
"tooltip": "Auto indent (selection)", | |
"callback": "editor:auto-indent", | |
"icon": "indent", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Fold all", | |
"callback": "editor:fold-all", | |
"icon": "level-up", | |
"iconset": "fa" | |
}, { | |
"type": "button", | |
"tooltip": "Unfold all", | |
"callback": "editor:unfold-all", | |
"icon": "level-down", | |
"iconset": "fa" | |
}, { | |
"type": "spacer" | |
}, { | |
"type": "button", | |
"tooltip": "Reload Window", | |
"callback": "window:reload", | |
"icon": "refresh", | |
"iconset": "ion" | |
}, { | |
"type": "button", | |
"tooltip": "Open Settings View", | |
"callback": "settings-view:open", | |
"icon": "gear-a", | |
"iconset": "ion" | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment