mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
be561f0e5e
Closes #1628 |
||
---|---|---|
.. | ||
advanced | ||
contributing.md | ||
converting-a-text-mate-bundle.md | ||
converting-a-text-mate-theme.md | ||
creating-a-package.md | ||
creating-a-theme.md | ||
customizing-atom.md | ||
getting-started.md | ||
index.md | ||
publishing-a-package.md | ||
README.md | ||
template.jst | ||
theme-variables.md | ||
your-first-package.md |
Welcome to the Atom API Documentation
FAQ
Where do I start?
Check out EditorView and Editor classes for a good overview of the main editor API.
How do I access these classes?
Check out the Atom class docs to see what globals are available and what they provide.
You can also require many of these classes in your package via:
{EditorView} = require 'atom'
The classes available from require 'atom'
are:
- BufferedProcess
- BufferedNodeProcess
- EditorView
- Git
- Point
- Range
- ScrollView
- SelectListView
- View
- WorkspaceView
- Workspace
How do I create a package?
You probably want to read the creating a package doc first and come back here when you are done.
Where are the node docs?
Atom ships with node 0.11.10 and the comprehensive node API docs are available here.