All Projects → varemenos → atom-toolbar-almighty

varemenos / atom-toolbar-almighty

Licence: MIT license
Atom editor's missing toolbar

Programming Languages

coffeescript
4710 projects

Projects that are alternatives of or similar to atom-toolbar-almighty

Atom Portable
Portable version of the Atom text editor
Stars: ✭ 187 (+790.48%)
Mutual labels:  atom, atom-editor
language-mjml
Atom Editor package providing syntax support for MJML
Stars: ✭ 48 (+128.57%)
Mutual labels:  atom, atom-editor
Teletype
Share your workspace with team members and collaborate on code in real time in Atom
Stars: ✭ 2,345 (+11066.67%)
Mutual labels:  atom, package
Atom React Snippets
esnext React snippets
Stars: ✭ 146 (+595.24%)
Mutual labels:  atom, atom-editor
VisualTeensy
VisualCode projects for PJRC Teensy boards
Stars: ✭ 101 (+380.95%)
Mutual labels:  atom, atom-editor
Tool Bar
Package providing customisable toolbar for Atom
Stars: ✭ 159 (+657.14%)
Mutual labels:  atom, toolbar
nord-atom-syntax
An arctic, north-bluish clean and elegant Atom syntax theme.
Stars: ✭ 72 (+242.86%)
Mutual labels:  atom, atom-editor
Atom Ava
Snippets for AVA and run tests directly in the editor
Stars: ✭ 96 (+357.14%)
Mutual labels:  atom, atom-editor
tool-bar
Package providing customisable toolbar for Atom
Stars: ✭ 161 (+666.67%)
Mutual labels:  atom, toolbar
electron-highlighter-syntax
Syntax theme for Atom editor
Stars: ✭ 16 (-23.81%)
Mutual labels:  atom, atom-editor
Markdown Themeable Pdf
ARCHIVED. NOT MAINTAINED. Themeable Markdown Converter (Print to PDF, HTML, JPEG or PNG)
Stars: ✭ 130 (+519.05%)
Mutual labels:  atom, atom-editor
atom-zurb-foundation
Zurb Foundation 6 for sites snippets.
Stars: ✭ 31 (+47.62%)
Mutual labels:  atom, atom-editor
Apex Syntax
Apex monochrome Atom theme syntax.
Stars: ✭ 127 (+504.76%)
Mutual labels:  atom, atom-editor
Gloom
A dark and gloomy pastel color syntax theme for Atom.
Stars: ✭ 182 (+766.67%)
Mutual labels:  atom, atom-editor
Docker Atom Editor
Run the Atom editor within a Docker container
Stars: ✭ 110 (+423.81%)
Mutual labels:  atom, atom-editor
RebelChat
Rebel Chat 💬 - is a modern way to keep in touch with any team, and keep your messaging under control right in your editor.
Stars: ✭ 19 (-9.52%)
Mutual labels:  atom, atom-editor
Open On Github
Atom package for opening files on GitHub.com
Stars: ✭ 89 (+323.81%)
Mutual labels:  atom, package
Nord Atom Ui
An arctic, north-bluish clean and elegant minimal Atom UI theme.
Stars: ✭ 94 (+347.62%)
Mutual labels:  atom, atom-editor
atom-carbon-now-sh
Atom package to open the current editor content in https://carbon.now.sh/
Stars: ✭ 15 (-28.57%)
Mutual labels:  atom, atom-editor
atom-linter-xo
Linter for XO
Stars: ✭ 90 (+328.57%)
Mutual labels:  atom, atom-editor

Toolbar Almighty - the only toolbar you need

https://img.shields.io/apm/v/tool-bar-almighty.svg https://img.shields.io/apm/dm/tool-bar-almighty.svg

This is a toolbar that provides many commonly used actions utilizing the tool-bar API.

screenshot

Toolbar entries

Available toolbar buttons:

  • new file
  • open file
  • open folder
  • save file
  • open git-control (missing from the screenshot) (requires git-control package)
  • open git projects (requires git-projects package)
  • list projects (requires project-manager package)
  • split screen horizontally
  • split screen vertically
  • git merge conflicts (requires merge-conflicts package)
  • toggle fullscreen
  • toggle tree-view
  • toggle minimap (requires minimap package)
  • auto indent
  • fold all
  • unfold all
  • reload window
  • toggle devtools
  • settings

Note: The toolbar buttons that require other packages will only appear if you have those packages installed

Installation

First you have to install the tool-bar package which is required:

apm install tool-bar

Then you install the tool-bar-almighty package:

apm install tool-bar-almighty

Options

  1. You have the ability to include custom entries.
  2. You also have the ability to load the suggested defaults along side your custom entries, or only the custom entries.

Custom entries

You have the ability to include custom entries in the tool-bar-almighty by enabling the option in the package settings and entering a path relative to your .atom directory (that contains the entries you want to add).

The file must be in JSON format that contains an Array of entries.

Format

The format is based on tool-bar's but include 2 extra properties.

  1. type indicates whether the entry is a button or a spacer
  2. dependency indicates whether a button's package is not installed by default in Atom and should only be displayed if it's package is installed.

Example

  • Create a file inside .atom's directory, in this case ~/.atom/custom_entries.json
  • The tool-bar-almighty setting's value must match the filename mentioned above custom_entries.json (relative to the .atom directory)
  • The content of the file should look like the following:
[
  {
    "type": "button",
    "tooltip": "Open File",
    "callback": "application:open-file",
    "icon": "document-text",
    "iconset": "ion"
  },
  {
    "type": "spacer"
  },
  {
    "type": "button",
    "tooltip": "Open Folder",
    "callback": "application:open-folder",
    "icon": "folder",
    "iconset": "ion"
  },
  {
    "type": "button",
    "tooltip": "Merge Conflicts",
    "dependency": "merge-conflicts",
    "callback": "merge-conflicts:detect",
    "icon": "code-fork",
    "iconset": "fa"
  }
]

Known Issues / FAQ

  • We've decided to remove the term2/term3 entries from the default entries, for more details and a possible fix read this issue's thread.
  • We've decided to only support the JSON format for the custom entries to prevent future formating issues.

License

The MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].