2016-06-11 09:56:50 -04:00
|
|
|
snippet mod
|
|
|
|
module `substitute(substitute(expand('%:r'), '[/\\]','.','g'),'^\%(\l*\.\)\?','','')` exposing (${1})
|
|
|
|
${0}
|
|
|
|
snippet imp
|
2017-09-02 06:43:18 -04:00
|
|
|
import ${0:Http}
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet impe
|
2017-09-02 06:43:18 -04:00
|
|
|
import ${1:Html} exposing (${0:..})
|
|
|
|
snippet impae
|
|
|
|
import ${1:Json.Encode} as ${2:Encode} exposing (${0:Value})
|
2016-06-11 09:56:50 -04:00
|
|
|
snippet fn
|
|
|
|
${1:fn} : ${2:a} -> ${3:a}
|
|
|
|
$1 ${4} =
|
|
|
|
${0}
|
|
|
|
snippet fn1
|
|
|
|
${1:fn} : ${2:a} -> ${3:a}
|
|
|
|
$1 ${4} =
|
|
|
|
${0}
|
|
|
|
snippet fn2
|
|
|
|
${1:fn} : ${2:a} -> ${3:a} -> ${4:a}
|
|
|
|
$1 ${5} =
|
|
|
|
${0}
|
|
|
|
snippet fn3
|
|
|
|
${1:fn} : ${2:a} -> ${3:a} -> ${4:a} -> ${5:a}
|
|
|
|
$1 ${6} =
|
|
|
|
${0}
|
|
|
|
snippet fn0
|
|
|
|
${1:fn} : ${2:a}
|
|
|
|
$1 =
|
|
|
|
${0}
|
|
|
|
snippet case
|
|
|
|
case ${1} of
|
|
|
|
${2} ->
|
|
|
|
${0}
|
|
|
|
snippet -
|
|
|
|
${1} ->
|
|
|
|
${0}
|
|
|
|
snippet let
|
|
|
|
let
|
2017-05-02 08:42:08 -04:00
|
|
|
${1} =
|
|
|
|
${2}
|
2016-06-11 09:56:50 -04:00
|
|
|
in
|
|
|
|
${0}
|
|
|
|
snippet if
|
|
|
|
if ${1} then
|
2017-02-11 08:01:38 -05:00
|
|
|
${2:${VISUAL}}
|
2016-06-11 09:56:50 -04:00
|
|
|
else
|
|
|
|
${0}
|
|
|
|
snippet ty
|
|
|
|
type ${1:Msg}
|
|
|
|
= ${0}
|
|
|
|
snippet tya
|
|
|
|
type alias ${1:Model} =
|
|
|
|
${0}
|
2017-09-02 06:43:18 -04:00
|
|
|
snippet test
|
|
|
|
test "${1}" <| \_ -> $0
|
2018-12-17 06:28:27 -05:00
|
|
|
snippet desc
|
|
|
|
describe "${1}" [ $0 ]
|
2017-09-02 06:43:18 -04:00
|
|
|
snippet doc
|
|
|
|
{-| ${0}
|
|
|
|
-}
|
2017-11-24 08:54:40 -05:00
|
|
|
snippet p
|
|
|
|
|> ${0}
|
2018-09-24 20:40:17 -04:00
|
|
|
snippet program Elm 0.18 program
|
2017-11-24 08:54:40 -05:00
|
|
|
import Html exposing (Html)
|
|
|
|
|
|
|
|
|
|
|
|
type alias Model =
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
type Msg
|
|
|
|
= Noop
|
|
|
|
|
|
|
|
|
|
|
|
main : Program Never Model Msg
|
|
|
|
main =
|
|
|
|
Html.program
|
|
|
|
{ init = init
|
|
|
|
, view = view
|
|
|
|
, update = update
|
|
|
|
, subscriptions = subscriptions
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
init : ( Model, Cmd Msg )
|
|
|
|
init =
|
|
|
|
{} ! []
|
|
|
|
|
|
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Cmd Msg )
|
|
|
|
update msg model =
|
|
|
|
case msg of
|
|
|
|
Noop ->
|
|
|
|
model ! []
|
|
|
|
|
|
|
|
|
|
|
|
subscriptions : Model -> Sub Msg
|
|
|
|
subscriptions model =
|
|
|
|
Sub.none
|
|
|
|
|
|
|
|
|
|
|
|
view : Model -> Html Msg
|
|
|
|
view model =
|
|
|
|
Html.text "Hello, sailor!"
|
2018-09-24 20:40:17 -04:00
|
|
|
snippet element
|
|
|
|
module Main exposing (Model, Msg(..), init, main, subscriptions, update, view)
|
|
|
|
|
|
|
|
import Browser
|
|
|
|
import Html exposing (..)
|
|
|
|
import Json.Encode
|
|
|
|
|
|
|
|
|
|
|
|
main : Program Flags Model Msg
|
|
|
|
main =
|
|
|
|
Browser.element
|
|
|
|
{ init = init
|
|
|
|
, update = update
|
|
|
|
, subscriptions = subscriptions
|
|
|
|
, view = view
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type alias Model =
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
type alias Flags =
|
|
|
|
Json.Encode.Value
|
|
|
|
|
|
|
|
|
|
|
|
init : Flags -> ( Model, Cmd Msg )
|
|
|
|
init flags_ =
|
|
|
|
( {}
|
|
|
|
, Cmd.none
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type Msg
|
|
|
|
= Noop
|
|
|
|
|
|
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Cmd Msg )
|
|
|
|
update msg model =
|
|
|
|
case msg of
|
|
|
|
Noop ->
|
|
|
|
( model
|
|
|
|
, Cmd.none
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
subscriptions : Model -> Sub Msg
|
|
|
|
subscriptions model =
|
|
|
|
Sub.none
|
|
|
|
|
|
|
|
|
|
|
|
view : Model -> Html Msg
|
|
|
|
view model =
|
|
|
|
h1 [] [ text "Hello, world!" ]
|