Skip to content

Instantly share code, notes, and snippets.

@gugadev
Created August 15, 2017 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gugadev/b847668b9b2aa4b4da76f15b90b96768 to your computer and use it in GitHub Desktop.
Save gugadev/b847668b9b2aa4b4da76f15b90b96768 to your computer and use it in GitHub Desktop.
Atom Flex Toolbar configuraiton
[
{
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