KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
language-ledger
★ 15
Open GitHub ↗
Ledger language support in Atom
Download README (.md)
Explore Similar Repositories
RabbitMqModule
:
PHP implementation of AMQP protocol
ember-cli-raygun
:
This addon will allow you to report errors to Raygun from your Ember CLI app using raygun4js
transitions-demo
:
No description available.
floodtrooper
:
an ancient http botnet
chr2sql
:
CHR2 to SQL conversion
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
language-ledger
?
Download (.md)
# Ledger language support in Atom [](https://travis-ci.org/4ourbit/language-ledger) Adds syntax highlighting, autocompletion and parser error reports to [Ledger](http://ledger-cli.org/) files in Atom. Grammar definition inspired by the [Ledger TextMate bundle](https://github.com/lifepillar/Ledger.tmbundle). Contributions are greatly appreciated. Please fork this repository and open a pull request to add snippets, make grammar tweaks, etc. ## Autocompletion Autocompletion uses the [autocomplete-plus](https://atom.io/packages/autocomplete-plus) package, that is bundled in Atom. In the `autocomplete-plus` settings pane *Default Provider* should be set to `Symbol`. The *Minimum Word Length* setting indicates when autocompletion is about to be triggered.  ## Parser error reports In case it is not accessible from PATH, the *Ledger binary* should be set in the `ledger-language` package settings pane. It will be used to silently check the journal file anytime it is saved. If there are parser errors, a notification is shown.  ## Transaction highlighting Uncleared and pending transactions are highlighted by default. To customize the highlighting, call the <kbd>Application: Open Your Stylesheet</kbd> command to open `styles.less` and define the new highlighting styles there. For example, add this snippet to disable highlighting of uncleared transactions: ```less atom-text-editor::shadow .ledger-transaction-uncleared .region { background-color: transparent; } ```