Last active
October 4, 2016 04:44
-
-
Save ironah2o/79de3bcdd61ab0757d283b60173c7e77 to your computer and use it in GitHub Desktop.
Atom flex-tool-bar setting
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" | |
icon: "document" | |
callback: "application:new-file" | |
tooltip: "New File (Ctrl+N)" | |
iconset: "ion" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Open File (Ctrl+O)' | |
callback: 'application:open-file' | |
icon: 'document-text' | |
iconset: 'ion' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Save File (Ctrl+S)' | |
callback: 'core:save' | |
icon: 'archive' | |
iconset: 'ion' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Reload Window (Alt+Ctrl+R)' | |
callback: 'window:reload' | |
icon: 'refresh' | |
iconset: 'ion' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Open Terminal Here (Ctrl+Ctrl+T)' | |
callback: 'open-terminal-here:open' | |
icon: 'terminal' | |
iconset: 'fa' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Toggle Bookmark' | |
callback: 'bookmarks:toggle-bookmark' | |
icon: 'bookmark' | |
iconset: 'ion' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Open Settings View (Ctrl+Comma)' | |
callback: 'settings-view:open' | |
icon: 'gear-a' | |
iconset: 'ion' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Toggle Developer Tools' | |
callback: 'window:toggle-dev-tools' | |
icon: 'bug' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Split screen - Horizontally' | |
callback: 'pane:split-right' | |
icon: 'columns' | |
iconset: 'fa' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Split screen - Vertically' | |
callback: 'pane:split-down' | |
icon: 'columns' | |
style: | |
transform:"rotate(90deg)" | |
iconset: 'fa' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Toggle Fullscreen (F11)' | |
callback: 'window:toggle-full-screen' | |
icon: 'arrows-alt' | |
iconset: 'fa' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Toggle Sidebar' | |
callback: 'tree-view:toggle' | |
icon: 'sitemap' | |
iconset: 'fa' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
tooltip: 'Toggle Minimap' | |
dependency: 'minimap' | |
callback: 'minimap:toggle' | |
icon: 'map' | |
iconset: 'ion' | |
style: | |
color: "#FA4F28" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Git Control' | |
dependency: 'git-control' | |
callback: 'git-control:toggle' | |
icon: 'bullseye' | |
iconset: 'fa' | |
style: | |
color: "#FA4F28" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Merge Conflicts' | |
dependency: 'merge-conflicts' | |
callback: 'merge-conflicts:detect' | |
icon: 'code-fork' | |
iconset: 'fa' | |
style: | |
color: "#FA4F28" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Editor Stats' | |
dependency: 'editor-stats' | |
callback: 'editor-stats:toggle' | |
icon: 'bar-chart' | |
iconset: 'fa' | |
style: | |
color: "#FA4F28" | |
} | |
{ | |
type: "spacer" | |
} | |
{ | |
type: "url" | |
tooltip: "Github Page" | |
url: "http://github.com" | |
icon: "octoface" | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: "button" | |
tooltip: 'Markdown Preview (Ctrl+Shift+M)' | |
icon: "markdown" | |
callback: "markdown-preview-plus:toggle" | |
disable: "!markdown" | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Markdown Writer: New Post' | |
dependency: 'markdown-writer' | |
callback: 'markdown-writer:new-post' | |
icon: 'document' | |
iconset: 'ion' | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Markdown Writer: Insert Image' | |
dependency: 'markdown-writer' | |
callback: 'markdown-writer:insert-image' | |
disable: "!markdown" | |
icon: 'picture-o' | |
iconset: 'fa' | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Markdown Writer: Insert Table' | |
dependency: 'markdown-writer' | |
callback: 'markdown-writer:insert-table' | |
disable: "!markdow" | |
icon: 'table' | |
iconset: 'fa' | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Markdown Writer: Open Cheat Sheet' | |
dependency: 'markdown-writer' | |
callback: 'markdown-writer:open-cheat-sheet' | |
icon: 'question' | |
iconset: 'fa' | |
style: | |
color: "#289bfa" | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: "button" | |
icon: "ellipsis" | |
callback: "flex-tool-bar:edit-config-file" | |
tooltip: "Edit ToolBar Button" | |
style: { | |
color: "#555555" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment