├── .gitignore ├── LICENSE ├── README.md ├── appendix-c-upgrading-to-1.0-apis └── upgrading-your-syntax-theme.md ├── chapter-1-getting-started ├── README.md ├── atom-basics.md ├── images │ ├── advanced-settings.png │ ├── command-palette.png │ ├── finder.png │ ├── first-launch.png │ ├── linux-downloads.png │ ├── open-file.png │ ├── project-view.png │ ├── settings-wrap.png │ ├── settings.png │ ├── theme.png │ └── windows.gif ├── installing-atom.md ├── summary.md └── why-atom.md └── chapter-2-using-atom ├── README.md ├── atom-packages.md ├── atom-selections.md ├── autocomplete.md ├── editing-and-deleting-text.md ├── find-and-replace.md ├── folding.md ├── grammar.md ├── images ├── autocomplete.png ├── bookmarks.png ├── encodings.png ├── find-replace-file.png ├── find-replace-project.png ├── folding.png ├── goto.png ├── grammar.png ├── multiple-cursors.gif ├── package-specific-settings.png ├── packages-install.png ├── panes.png ├── preview.png ├── snippet-scope.png ├── snippets-see-snippets.png ├── spellcheck.png ├── symbol.png ├── themes.png ├── unity-theme.png └── whitespace.png ├── moving-in-atom.md ├── panes.md ├── snippets.md └── writing-in-atom.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | _book/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/README.md -------------------------------------------------------------------------------- /appendix-c-upgrading-to-1.0-apis/upgrading-your-syntax-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/appendix-c-upgrading-to-1.0-apis/upgrading-your-syntax-theme.md -------------------------------------------------------------------------------- /chapter-1-getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/README.md -------------------------------------------------------------------------------- /chapter-1-getting-started/atom-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/atom-basics.md -------------------------------------------------------------------------------- /chapter-1-getting-started/images/advanced-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/advanced-settings.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/command-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/command-palette.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/finder.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/first-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/first-launch.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/linux-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/linux-downloads.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/open-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/open-file.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/project-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/project-view.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/settings-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/settings-wrap.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/settings.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/theme.png -------------------------------------------------------------------------------- /chapter-1-getting-started/images/windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/images/windows.gif -------------------------------------------------------------------------------- /chapter-1-getting-started/installing-atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/installing-atom.md -------------------------------------------------------------------------------- /chapter-1-getting-started/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/summary.md -------------------------------------------------------------------------------- /chapter-1-getting-started/why-atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-1-getting-started/why-atom.md -------------------------------------------------------------------------------- /chapter-2-using-atom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/README.md -------------------------------------------------------------------------------- /chapter-2-using-atom/atom-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/atom-packages.md -------------------------------------------------------------------------------- /chapter-2-using-atom/atom-selections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/atom-selections.md -------------------------------------------------------------------------------- /chapter-2-using-atom/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/autocomplete.md -------------------------------------------------------------------------------- /chapter-2-using-atom/editing-and-deleting-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/editing-and-deleting-text.md -------------------------------------------------------------------------------- /chapter-2-using-atom/find-and-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/find-and-replace.md -------------------------------------------------------------------------------- /chapter-2-using-atom/folding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/folding.md -------------------------------------------------------------------------------- /chapter-2-using-atom/grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/grammar.md -------------------------------------------------------------------------------- /chapter-2-using-atom/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/autocomplete.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/bookmarks.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/encodings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/encodings.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/find-replace-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/find-replace-file.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/find-replace-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/find-replace-project.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/folding.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/goto.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/grammar.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/multiple-cursors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/multiple-cursors.gif -------------------------------------------------------------------------------- /chapter-2-using-atom/images/package-specific-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/package-specific-settings.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/packages-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/packages-install.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/panes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/panes.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/preview.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/snippet-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/snippet-scope.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/snippets-see-snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/snippets-see-snippets.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/spellcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/spellcheck.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/symbol.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/themes.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/unity-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/unity-theme.png -------------------------------------------------------------------------------- /chapter-2-using-atom/images/whitespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/images/whitespace.png -------------------------------------------------------------------------------- /chapter-2-using-atom/moving-in-atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/moving-in-atom.md -------------------------------------------------------------------------------- /chapter-2-using-atom/panes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/panes.md -------------------------------------------------------------------------------- /chapter-2-using-atom/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/snippets.md -------------------------------------------------------------------------------- /chapter-2-using-atom/writing-in-atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-china/manual/HEAD/chapter-2-using-atom/writing-in-atom.md --------------------------------------------------------------------------------