language-ethereum icon indicating copy to clipboard operation
language-ethereum copied to clipboard

Ethereum language support for Atom

Results 14 language-ethereum issues
Sort by recently updated
recently updated
newest added

Steps to reproduce: 1. In Atom with language-ethereum installed, create a new `MyContract.sol` file. 2. Write or paste code like the following: ``` pragma solidity ^0.4.24; contract MyContract { uint...

Similar to [this example](https://solidity.readthedocs.io/en/develop/contracts.html#using-for) in the official docs.

@caktux Are you still around? I see the last GitHub activity from this account was July 2016, last LinkedIn profile update was 2014, last website updates for your websites seems...

Solidity.cson is now updated to reflect version 0.4.24

[As of](https://github.com/ethereum/solidity/blob/b5e804b8caba0cc84514898323df91a025705177/Changelog.md) solidity 0.4.21, the `emit` keyword was [introduced](https://github.com/ethereum/solidity/commit/388718b59f604c944be6816ba50068014e563fb0#diff-9f2a45efaa7b75ab7ec620d3177cf01a) and ["Invoking events without \"emit\" prefix is deprecated."](https://github.com/ethereum/solidity/commit/8c1a8ecc2e6518dcfee73e6cd9ee8dd9a3eaaea0#diff-9f2a45efaa7b75ab7ec620d3177cf01a). `emit` should be colored as a keyword. See also https://github.com/ethereum/solidity/issues/2182 for additional reserved...

Hi! I wrote [SublimeEthereum package](https://packagecontrol.io/packages/Ethereum), I see that you used it for the basis of your solidity syntax... I wonder if you have made some updates to it yourself or...

I am using Atom 1.23.2 x64 on the latest Windows 10, writing in Solidity in a file with a .sol extension. The code below, written as an illustrative example, is...

Attempt to address [issue #18](https://github.com/caktux/language-ethereum/issues/18), which looks like it works.

The current [file-icons](https://github.com/file-icons/atom) integration has 3 bugs: 1. the icon is not displayed for Solidity files 2. the icon is not colorized for Solidity files 3. the font is broken...

Both of the following were auto-indented by Atom (with four spaces per indent for visual clarity). This code looks properly indented: pragma solidity ^0.4.0; library RecordsLib { //you wouldnt expect...