Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Fix link to Package Word Count from The Init File #86

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/03-hacking-atom/sections/02-init-file.asc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[[_the_init_file]]
=== The Init File

When Atom finishes loading, it will evaluate `init.coffee` in your `~/.atom` directory, giving you a chance to run CoffeeScript code to make customizations. Code in this file has full access to https://atom.io/docs/api/latest/Atom[Atom's API]. If customizations become extensive, consider creating a package, which we will cover in <<_package_word_count>>.
When Atom finishes loading, it will evaluate `init.coffee` in your `~/.atom` directory, giving you a chance to run CoffeeScript code to make customizations. Code in this file has full access to https://atom.io/docs/api/latest/Atom[Atom's API]. If customizations become extensive, consider creating a package, which we will cover in https://atom.io/docs/latest/hacking-atom-package-word-count[Package Word Count].

You can open the `init.coffee` file in an editor from the _Atom > Open Your Init Script_ menu. This file can also be named `init.js` and contain JavaScript code.

Expand Down