yi-snippet-0.19.0: Snippet support for yi
Safe HaskellNone
LanguageHaskell2010

Yi.Snippet

Documentation

data Snippet Source #

Constructors

Snippet YiString (SnippetBody ()) 

data Var Source #

Instances

Instances details
Eq Var Source # 
Instance details

Defined in Yi.Snippet.Internal

Methods

(==) :: Var -> Var -> Bool #

(/=) :: Var -> Var -> Bool #

Ord Var Source # 
Instance details

Defined in Yi.Snippet.Internal

Methods

compare :: Var -> Var -> Ordering #

(<) :: Var -> Var -> Bool #

(<=) :: Var -> Var -> Bool #

(>) :: Var -> Var -> Bool #

(>=) :: Var -> Var -> Bool #

max :: Var -> Var -> Var #

min :: Var -> Var -> Var #

Show Var Source # 
Instance details

Defined in Yi.Snippet.Internal

Methods

showsPrec :: Int -> Var -> ShowS #

show :: Var -> String #

showList :: [Var] -> ShowS #

Generic Var Source # 
Instance details

Defined in Yi.Snippet.Internal

Associated Types

type Rep Var :: Type -> Type #

Methods

from :: Var -> Rep Var x #

to :: Rep Var x -> Var #

Binary Var Source # 
Instance details

Defined in Yi.Snippet.Internal

Methods

put :: Var -> Put #

get :: Get Var #

putList :: [Var] -> Put #

type Rep Var Source # 
Instance details

Defined in Yi.Snippet.Internal

type Rep Var = D1 ('MetaData "Var" "Yi.Snippet.Internal" "yi-snippet-0.19.0-BIiXzpqcus2IxVJ96XWKWu" 'False) (C1 ('MetaCons "FilenameVar" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "UserVar" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromVar") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Int)))

type SnippetBody = Free SnippetBodyF Source #