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

Commit 93dbfcd

Browse files
committed
Enable Windows builds on AppVeyor
1 parent ece2e24 commit 93dbfcd

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

README.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Spell Check Package [![Build Status](https://travis-ci.org/atom/spell-check.svg?branch=master)](https://travis-ci.org/atom/spell-check)
1+
# Spell Check package
2+
[![OS X Build Status](https://travis-ci.org/atom/spell-check.svg?branch=master)](https://travis-ci.org/atom/spell-check) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/1620a5reqw6kdolv/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/spell-check/branch/master) [![Dependency Status](https://david-dm.org/atom/spell-check.svg)](https://david-dm.org/atom/spell-check)
23

34
Highlights misspelling in Atom and shows possible corrections.
45

5-
Use `cmd+shift+:` to bring up the list of corrections when your cursor is on a
6-
misspelled word.
6+
Use <kbd>cmd-shift-:</kbd> to bring up the list of corrections when your cursor is on a misspelled word.
77

88
By default spell check is enabled for the following files:
99

@@ -12,17 +12,10 @@ By default spell check is enabled for the following files:
1212
* Git Commit Message
1313
* AsciiDoc
1414

15-
You can override this from the _Spell Check_ settings in the Settings view
16-
(<kbd>cmd+,</kbd>). The Grammars config option is a list of scopes for which the package
17-
will check for spelling errors.
18-
19-
To enable _Spell Check_ for your current file type: put your cursor in the file,
20-
open the [Command Palette](https://github.com/atom/command-palette)
21-
(<kbd>cmd+shift+p</kbd>), and run the `Editor: Log Cursor Scope` command. This
22-
will trigger a notification which will contain a list of scopes. The first scope
23-
that's listed is the one you should add to the list of scopes in the settings
24-
for the _Spell Check_ package. Here are some examples: `source.coffee`,
25-
`text.plain`, `text.html.basic`.
15+
You can override this from the _Spell Check_ settings in the Settings View (<kbd>cmd-,</kbd>). The Grammars config option is a list of scopes for which the package will check for spelling errors.
16+
17+
To enable _Spell Check_ for your current file type: put your cursor in the file, open the [Command Palette](https://github.com/atom/command-palette)
18+
(<kbd>cmd-shift-p</kbd>), and run the `Editor: Log Cursor Scope` command. This will trigger a notification which will contain a list of scopes. The first scope that's listed is the one you should add to the list of scopes in the settings for the _Spell Check_ package. Here are some examples: `source.coffee`, `text.plain`, `text.html.basic`.
2619

2720
## Changing the dictionary
2821

appveyor.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: "{build}"
2+
3+
os: Windows Server 2012 R2
4+
5+
install:
6+
- choco install atom -y
7+
- cd %APPVEYOR_BUILD_FOLDER%
8+
- "%LOCALAPPDATA%/atom/bin/apm clean"
9+
- "%LOCALAPPDATA%/atom/bin/apm install"
10+
11+
build_script:
12+
- cd %APPVEYOR_BUILD_FOLDER%
13+
- "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd"
14+
15+
test: off
16+
17+
deploy: off

0 commit comments

Comments
 (0)