Last active
March 14, 2017 23:25
-
-
Save tesseslol/206a4680525446c6125227e2b0b53260 to your computer and use it in GitHub Desktop.
tool bar atom
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
# This file is used by Flex Tool Bar to create buttons on your Tool Bar. | |
# For more information how to use this package and create your own buttons, | |
# read the documentation on https://atom.io/packages/flex-tool-bar | |
[ | |
{ | |
type: 'button' | |
icon: 'plus' | |
callback: 'project-manager:save-project' | |
tooltip: 'Save Project' | |
} | |
{ | |
type: 'button' | |
icon: 'folder' | |
iconset: 'ion' | |
callback: 'project-manager:list-projects' | |
tooltip: 'List of Project' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'terminal' | |
callback: 'platformio-ide-terminal:toggle' | |
tooltip: 'Toggle Terminal' | |
} | |
{ | |
type: 'button' | |
icon: 'mark-github' | |
callback: 'git-plus:menu' | |
tooltip: 'Git Menù' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'indent' | |
iconset: 'fa' | |
callback: 'editor:auto-indent' | |
tooltip: 'Auto indent (selection)' | |
} | |
{ | |
type: 'button' | |
icon: 'flash' | |
iconset: 'fa' | |
callback: 'atom-beautify:beautify-editor' | |
tooltip: 'Beautify Editor' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: "button", | |
icon: "bookmark", | |
callback: "bookmarks:toggle-bookmark", | |
tooltip: "Toggle Bookmark" | |
} | |
{ | |
type: "button", | |
icon: "search", | |
callback: "bookmarks:jump-to-next-bookmark", | |
tooltip: "Jump to next Bookmark" | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'comment' | |
iconset: 'fa' | |
callback: 'editor:toggle-line-comments' | |
tooltip: 'Toggle Comment' | |
} | |
{ | |
type: 'button' | |
icon: 'quote-right' | |
iconset: 'fa' | |
callback: 'toggle-quotes:toggle' | |
tooltip: 'Toggle Quotes' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'ios-list-outline' | |
iconset: 'ion' | |
callback: 'imdone-atom:tasks' | |
tooltip: 'Show all Tasks' | |
} | |
{ | |
type: 'button' | |
icon: 'eye' | |
callback: 'preview:toggle' | |
tooltip: 'Previw of Code' | |
iconset: 'fa' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'diff' | |
callback: 'local-history:current-file' | |
tooltip: 'File History' | |
} | |
{ | |
type: 'button' | |
icon: 'clippy' | |
callback: 'clipboard-plus:toggle' | |
tooltip: 'Clipboard History' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'chrome' | |
callback: 'browser-plus:openCurrent' | |
tooltip: 'Open in Chrome' | |
iconset: 'icomoon' | |
} | |
{ | |
type: "url" | |
url: "https://mail.google.com/mail/u/0/#search/in%3Ainbox+is%3Aunread+category%3Aprimary" | |
icon: "gmail" | |
tooltip: "Open in Gmail" | |
iconset: 'mdi' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'question' | |
callback: 'dash:shortcut-alt-background' | |
tooltip: 'Docs Search' | |
iconset: 'ion-help-circled' | |
} | |
{ | |
type: 'spacer' | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment