Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qligier/fsh.tmbundle
A TextMate bundle for the FSH (FHIR Shorthand) language
https://github.com/qligier/fsh.tmbundle
fhir fsh jetbrains syntax-highlighting textmate-bundle
Last synced: 5 days ago
JSON representation
A TextMate bundle for the FSH (FHIR Shorthand) language
- Host: GitHub
- URL: https://github.com/qligier/fsh.tmbundle
- Owner: qligier
- License: mit
- Created: 2024-03-20T15:09:36.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-21T11:59:04.000Z (8 months ago)
- Last Synced: 2024-03-22T12:53:27.484Z (8 months ago)
- Topics: fhir, fsh, jetbrains, syntax-highlighting, textmate-bundle
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fsh.tmbundle
A TextMate 2 Bundle for the [FSH](https://build.fhir.org/ig/HL7/fhir-shorthand/index.html) (FHIR Shorthand) language.
## Installation
### JetBrains IDEs
1. Download or clone this repository on your local machine.
2. [Verify](https://www.jetbrains.com/help/idea/textmate.html#enable-the-plugin) that the plugin
[TextMate Bundles](https://plugins.jetbrains.com/plugin/7221-textmate-bundles) is installed and enabled in your
JetBrains IDE (it should come pre-bundled).
3. In `Settings → Editor → TextMate Bundles`,
[import the bundle](https://www.jetbrains.com/help/idea/textmate.html#import-textmate-bundles) you downloaded at
step 1.
4. Open an FSH file (with `.fsh` extension) in your JetBrains IDE and enjoy the syntax highlighting.## Development
This bundle is based upon the `tmLanguage` implementation in the
[vscode-language-fsh](https://github.com/standardhealth/vscode-language-fsh) project.The `tmLanguage` file is converted from JSON to p-list using the [plist2](https://github.com/wareset/plist2) tool:
```bash
.\node_modules\.bin\plist2 .\fsh.tmLanguage.json .\fsh.tmbundle\Syntaxes\fsh.tmLanguage
```The `info.plist` file is handcrafted.
## Changelog
- 27/09/2024: [#1](https://github.com/qligier/fsh.tmbundle/issues/1) - Replaced a non-fixed width lookbehind with an atomic group
- 21/03/2024: Initial release