Created
August 15, 2017 14:14
-
-
Save gugadev/b847668b9b2aa4b4da76f15b90b96768 to your computer and use it in GitHub Desktop.
Atom Flex Toolbar configuraiton
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: 'Open File' | |
callback: 'application:open-file' | |
icon: 'document' | |
iconset: 'ion' | |
}, | |
{ | |
type: 'button' | |
tooltip: 'Open Folder' | |
callback: 'application:open-folder' | |
icon: 'android-folder-open' | |
iconset: 'ion' | |
}, | |
{ | |
type: 'button' | |
tooltip: 'Save File' | |
callback: 'window:save-all' | |
icon: 'archive' | |
iconset: 'ion' | |
}, | |
{ | |
type: 'button' | |
tooltip: 'GitHub tab' | |
callback: 'github:toggle-git-tab' | |
icon: 'git' | |
iconset: 'fa' | |
}, | |
{ | |
type: 'spacer' | |
}, | |
{ | |
type: 'button' | |
icon: 'search' | |
callback: 'find-and-replace:show' | |
tooltip: 'Find in Buffer' | |
iconset: 'ion' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Split screen - Vertically' | |
callback: 'pane:split-down' | |
icon: 'columns' | |
iconset: 'fa' | |
}, | |
{ | |
type: 'spacer' | |
}, | |
{ | |
type: 'button' | |
tooltip: 'Toggle Sidebar' | |
callback: 'tree-view:toggle' | |
icon: 'sitemap' | |
iconset: 'fa' | |
}, | |
{ | |
type: 'spacer' | |
}, | |
{ | |
type: 'button', | |
icon: 'heart', | |
callback: 'atom-beautify:beautify-editor', | |
tooltip: 'Beautify' | |
}, | |
{ | |
type: 'button', | |
icon: 'terminal', | |
callback: 'open-terminal-here:open-root', | |
tooltip: 'Open Terminal At Root' | |
}, | |
{ | |
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