1
0
Mirror von https://tildegit.org/ben/dotfiles.git synchronisiert 2025-07-18 18:42:02 +00:00
dotfiles/sublime/.config/sublime-text-3/Packages/User/elmtemplate.sublime-snippet
2018-10-01 00:51:07 -04:00

33 Zeilen
549 B
XML
Ausführbare Datei

<snippet>
<content><![CDATA[
import Html exposing (..)
-- MODEL
type alias Model = { ... }
-- UPDATE
type Msg = Reset | ...
update : Msg -> Model -> Model
update msg model =
case msg of
Reset -> ...
...
-- VIEW
view : Model -> Html Msg
view model =
...
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>elmtemplate</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.elm</scope>
</snippet>