-
Notifications
You must be signed in to change notification settings - Fork 2
/
vim-indent-error.lisp
30 lines (24 loc) · 996 Bytes
/
vim-indent-error.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;last modified 2019-11-10
;created < 2013-04-07
;Dorai Sitaram
;(n)vim with v:version == 800 still gets this wrong
;example code in need of indentation
(begin
(display "alpha
bravo should stay put, not move under alpha
charlie should stay put, not move under alpha or bravo")
"should line up under lparen before display, not under alpha, bravo, or charlie")
;after indenting with
; setl lisp ep=
(begin
(display "alpha
bravo should stay put, not move under alpha
charlie should stay put, not move under alpha or bravo")
"should line up under lparen before display, not under alpha, bravo, or charlie")
;after indenting with
; setl nolisp ep= inde=scmindent#GetScmIndent(v:lnum)
(begin
(display "alpha
bravo should stay put, not move under alpha
charlie should stay put, not move under alpha or bravo")
"should line up under lparen before display, not under alpha, bravo, or charlie")