Skip to content

Instantly share code, notes, and snippets.

@yedanbo
Created October 13, 2016 19:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yedanbo/fb652475e049a3d8dcf50777cf4e0f02 to your computer and use it in GitHub Desktop.
Save yedanbo/fb652475e049a3d8dcf50777cf4e0f02 to your computer and use it in GitHub Desktop.
Atom工具栏配置文件
# 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: "markdown"
callback: "markdown-preview:toggle"
tooltip: "Markdown 预览"
disble: "!markdown"
show: "markdown"
style:
color: "brown"
}
{
type: "spacer"
}
{
type: "button"
icon: "mirror"
callback: "tree-view:toggle"
tooltip: "边栏切换"
}
{
type: "button"
icon: "arrows-alt"
iconset: "fa"
callback: "window:toggle-full-screen"
tooltip: "全屏切换"
}
{
type: "spacer"
}
{
type: "button"
icon: "bug"
iconset: "fa"
callback: "pane:split-right"
tooltip: "运行代码"
}
{
type: "button"
icon: "chrome"
iconset: "fa"
callback: "atom-live-server:start-8000"
tooltip: "启动服务器"
}
{
type: "spacer"
}
{
type: "button"
icon: "tachometer"
iconset: "fa"
callback: "command-palette:toggle"
tooltip: "命令中心"
}
{
type: "spacer"
}
{
type: "button"
icon: "git"
iconset: "icomoon"
callback: "git-control:toggle"
tooltip: "版本控制(Git)"
}
{
type: "button"
icon: "terminal"
callback: "platformio-ide-terminal:toggle"
tooltip: "终端窗口"
}
{
type: "spacer"
}
{
type: "button"
icon: "file-code-o"
iconset: "fa"
callback: "gist:create-public"
tooltip: "代码片段(Gist)"
}
{
type: "button"
icon: "search"
callback: "find-and-replace:show"
tooltip: "查找替换"
}
{
type: "button"
icon: "tasks"
iconset: "fa"
callback: "project-viewer:toggle-display"
tooltip: "项目切换"
}
{
type: "spacer"
}
{
type: "button"
icon: "cube"
iconset: "ion"
callback: "settings-view:install-packages-and-themes"
tooltip: "安装扩展"
}
{
type: "button"
icon: "keyboard"
callback: "settings-view:show-keybindings"
tooltip: "按键绑定"
}
{
type: "button"
icon: "gear"
iconset: "fa"
callback: "settings-view:view-installed-packages"
tooltip: "扩展设置"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment