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!
apm install elm-snippets
Write the prefixes below and press the Tab
key and you're good to go.
module <name> (..) where
import <name>
import <name> as <alias>
import <name> exposing (..)
type alias <name> =
<something>
String
Signal
Signal.map <(a -> b)> <Signal a>
Signal.mailbox ""
case <something> of
<Condition> ->
<action>