File tree Expand file tree Collapse file tree 1 file changed +17
-5
lines changed
Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -31,33 +31,45 @@ Be sure that the following lines are in your
3131
3232To configure indentation in ` purescript-vim ` you can use the following variables:
3333
34- * ` let g: purescript_indent_if = 3 `
34+ * ` let purescript_indent_if = 3 `
3535
3636 if bool
3737 >>>then ...
3838 >>>else ...
3939
40- * ` let g: purescript_indent_case = 5 `
40+ * ` let purescript_indent_case = 5 `
4141
4242 case xs of
4343 >>>>>[] -> ...
4444 >>>>>(y:ys) -> ...
4545
46- * ` let g: purescript_indent_let = 4 `
46+ * ` let purescript_indent_let = 4 `
4747
4848 let x = 0 in
4949 >>>>x
5050
51- * ` let g: purescript_indent_where = 6 `
51+ * ` let purescript_indent_where = 6 `
5252
5353 where f :: Int -> Int
5454 >>>>>>f x = x
5555
56- * ` let g: purescript_indent_do = 3 `
56+ * ` let purescript_indent_do = 3 `
5757
5858 do x <- a
5959 >>>y <- b
6060
61+ * ` let purescript_indent_in = 1 `
62+
63+ let x = 0
64+ >in x
65+
66+ * ` let purescript_indent_dot = v:true `
67+
68+ unsnoc
69+ :: forall a
70+ >. List a
71+ -> Maybe (List a, a)
72+
6173
6274[ Purescript ] : http://www.purescript.org
6375[ Pathogen ] : https://github.com/tpope/vim-pathogen
You can’t perform that action at this time.
0 commit comments