Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Add dotfiles language settings, fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcgrtz committed May 15, 2016
1 parent 2106f72 commit 7de889c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v0.3.0 / 2016-01-11
===================

* Bump version number.
* Add dotfiles language settings to fix autocommenting.
* Add .editorconfig

v0.2.0 / 2016-01-11
===================

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "[email protected]",
"url": "https://marcgoertz.de/"
},
"version": "0.2.0",
"version": "0.3.0",
"keywords": [
"dotfiles",
"configuration",
Expand Down
6 changes: 6 additions & 0 deletions settings/language-dotfiles.cson
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'.source.dotfiles':
'editor':
'commentStart': '# '
'foldEndPattern': '^\\s*(\\}|(done|fi|esac)\\b)'
'increaseIndentPattern': '^\\s*(else|case)\\b|^.*(\\{|\\b(then|do)\\b)$'
'decreaseIndentPattern': '^\\s*(\\}|(elif|else|fi|esac|done)\\b)'

1 comment on commit 7de889c

@KingScooty
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Awesome!

Please sign in to comment.