Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/chiefGui/atom-elm-snippets

Elm snippets for Atom :kissing_heart:
https://github.com/chiefGui/atom-elm-snippets

Last synced: 2 months ago
JSON representation

Elm snippets for Atom :kissing_heart:

Lists

README

        

# Elm snippets for Atom

Adding some shortcut sugar to your day-by-day programming in Elm on Atom.

_Disclaimer: this package is in early stage. I'm not covering all the possible scenarios, but the most ones used by me. Feel free to PR!_

### Install

`apm install elm-snippets`

### Snippets

Write the prefixes below and press the `Tab` key and you're good to go.

#### [mod]

```elm
module (..) where
```

#### [imp]

```elm
import
```

#### [impas]

```elm
import as
```

#### [impea]

```elm
import exposing (..)
```

#### [ta]

```elm
type alias =

```

#### [str]

```elm
String
```

#### [sig]

```elm
Signal
```

#### [sigma]

```elm
Signal.map <(a -> b)>
```

#### [sigmb]

```elm
Signal.mailbox ""
```

#### [cof]

```elm
case of
->

```