Compare commits

...

6 Commits

Author SHA1 Message Date
cn c0a38af087 Prepare 1.1.3 release 2018-02-21 21:29:30 +01:00
cn 5d647fd842 package: add keywords 2018-02-21 21:29:13 +01:00
Christian Nicolai 9e977f7abb Prepare 1.1.2 release 2018-02-21 15:54:33 +01:00
Christian Nicolai da21bc01cc grammar: try to detect regex values to avoid weird highlighting 2018-02-21 15:53:10 +01:00
cn 78ea23f555 Prepare 1.1.1 release 2017-11-25 11:15:20 +01:00
cn 3360373cb6 docs: add installation instructions and screenshot 2017-11-25 11:14:12 +01:00
5 changed files with 46 additions and 1 deletions

View File

@ -1,5 +1,23 @@
# Changelog
## 1.1.3 (February 21, 2018)
IMPROVEMENTS:
- Add package keywords
## 1.1.2 (February 21, 2018)
IMPROVEMENTS:
- Detection of regex values (although not an official data type) to avoid weird highlighting
## 1.1.1 (November 25, 2017)
IMPROVEMENTS:
- Add installation instructions and screenshot
## 1.1.0 (November 25, 2017)
NEW FEATURES:

View File

@ -2,6 +2,22 @@
Adds basic syntax highlighting to `fluent.conf` based on the [Sublime Text and TextMate package](https://github.com/adamchainz/fluentd.tmLanguage) with some improvements in Atom.
![Screenshot](/screenshot.png?raw=true)
## Installation
Available as [Atom package](https://atom.io/packages/language-fluentd):
```
apm install language-fluentd
```
Or directly via git:
```
git clone https://github.com/cmur2/language-fluentd.git ~/.atom/packages/language-fluentd
```
## License
language-fluentd is licensed under the MIT License. See LICENSE for more information.

View File

@ -138,6 +138,10 @@ repository:
{include: 'source.json'}
]
}
{
match: '\/.+\/$'
name: 'value.string.regex.fluentd'
}
{
match: '\\b(\\d+)\\b'
name: 'value.constant.integer.fluentd'

View File

@ -1,7 +1,14 @@
{
"name": "language-fluentd",
"description": "Fluentd Configuration language support in Atom",
"version": "1.1.0",
"version": "1.1.3",
"keywords": [
"language",
"grammar",
"fluentd",
"configuration",
"logging"
],
"engines": {
"atom": "*"
},

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB