Skip to content

Commit

Permalink
Rearrange some files
Browse files Browse the repository at this point in the history
Particularly in order to fix the syntax unit test file
  • Loading branch information
Michael Lyons committed Nov 30, 2019
1 parent c1d7d21 commit 54f1fa7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 46 deletions.
File renamed without changes.
12 changes: 8 additions & 4 deletions README.md
@@ -1,6 +1,8 @@
# Crontab for Sublime Text 3

[![GitHub license](https://img.shields.io/github/license/michaelblyons/CrontabSublime.svg)](https://github.com/michaelblyons/CrontabSublime/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/michaelblyons/CrontabSublime.svg)](https://GitHub.com/michaelblyons/CrontabSublime/releases/) [![Package Control](https://packagecontrol.herokuapp.com/downloads/Crontab.svg?style=flat-square)](https://packagecontrol.io/packages/Crontab)
[![GitHub license](https://img.shields.io/github/license/michaelblyons/SublimeSyntax-Crontab.svg)](https://github.com/michaelblyons/SublimeSyntax-Crontab/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/michaelblyons/SublimeSyntax-Crontab.svg)](https://GitHub.com/michaelblyons/SublimeSyntax-Crontab/releases/)
[![Package Control](https://packagecontrol.herokuapp.com/downloads/Crontab.svg?style=flat-square)](https://packagecontrol.io/packages/Crontab)

![Example screenshot][screenshot]

Expand Down Expand Up @@ -28,12 +30,14 @@

## Credits/Acknowledgements

1. [clarkewd][]'s original [Crontab Highlighting Package][clarkewd-cron] which was inherited from [kevinior][] and [WheresWardy][]
2. Adam Schubert and his [`cron_descriptor`][cron_descriptor] package.
1. [clarkewd][]'s original [Crontab Highlighting Package][clarkewd-cron] which was inherited from [kevinior][] and [WheresWardy][].
2. [Varun Nayyar][nayyarv] and his adaptation of the package to `.sublime-syntax`.
3. Adam Schubert and his [`cron_descriptor`][cron_descriptor] package.

[screenshot]: CrontabHighlightSample.png
[screenshot]: screenshot.png
[clarkewd]: https://github.com/clarkewd
[clarkewd-cron]: https://github.com/clarkewd/SublimeCrontab
[kevinior]: https://github.com/kevinior
[whereswardy]: https://github.com/WheresWardy
[nayyarv]: https://github.com/nayyarv
[cron_descriptor]: https://github.com/Salamek/cron-descriptor
42 changes: 0 additions & 42 deletions CrontabHighlightSample.tab → screenshot.crontab
Expand Up @@ -33,45 +33,3 @@ SHELL=/bin/sh
5 4 * * Sun echo "run at 5 after 4 every sunday"

0 20 * Jan,Jul 1-5 echo "weeknights at 8pm in January and July"

* ,* * * * echo "initial comma"

* *, * * * echo "hanging comma"

* 4/,2 * * * echo "no step number"

* ** * * * echo "only one asterisk allowed"

* */2 * * * echo "asterisk can have steps"

* */* * * * echo "step must be a number"
5 4 * *
Sun echo "always end at newline"
5 4 * * Su echo "not finished typing day-name"
60 * * * * echo "Minute: bigger number than allowed"
* 24 * * * echo "Hour: bigger number than allowed"
* * 32 * * echo "Day of Month: bigger number than allowed"
* * * 13 * echo "Month: bigger number than allowed"
* * * 0 * echo "Month: smaller number than allowed"
* * * * 8 echo "Day of Week: bigger number than allowed"
59 * * * * echo "Minute: biggest number allowed"
* 23 * * * echo "Hour: biggest number allowed"
* * 31 * * echo "Day of Month: biggest number allowed"
* * * 1 * echo "Month: smallest number allowed"
* * * 12 * echo "Month: biggest number allowed"
* * * * 7 echo "Day of Week: biggest number allowed"
File renamed without changes

0 comments on commit 54f1fa7

Please sign in to comment.