1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
amix
2014-10-31 21:30:24 +00:00
parent fe77d23852
commit a304deea56
94 changed files with 5065 additions and 393 deletions

View File

@ -17,7 +17,7 @@ ${1:name} :: ${2:Type} -> ${3:Type}
endsnippet
snippet => "Type constraint"
(${1:Class} ${2:Type var}) => ${3:$2}
(${1:Class} ${2:a}) => $2
endsnippet
snippet def "Function definition"
@ -50,7 +50,7 @@ snippet | "Guard"
endsnippet
snippet \ "Lambda expression"
\ ${1:pattern} -> ${2:expression}
\\${1:pattern} -> ${2:expression}
endsnippet
snippet [|] "List comprehension"
@ -61,3 +61,8 @@ snippet let "let ... in ..."
let ${1:name} = ${2:expression}
in ${3:expression}
endsnippet
snippet wh "where x = expression"
where
${1:name} = ${2:expression}
endsnippet