annotate runtime/indent/lisp.vim @ 580:90ee46d7f492
v7.0164
updated for version 7.0164
author |
vimboss |
date |
Wed, 07 Dec 2005 21:07:59 +0000 |
parents |
8fa8d7964cf1 |
children |
ba708ee8d69d |
rev |
line source |
233
|
1 " Vim indent file
|
|
2 " Language: Lisp
|
274
|
3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
|
|
4 " URL: http://iamphet.nm.ru/vim
|
|
5 " Last Change: 2005 May 19
|
233
|
6
|
|
7 " Only load this indent file when no other was loaded.
|
|
8 if exists("b:did_indent")
|
|
9 finish
|
|
10 endif
|
|
11 let b:did_indent = 1
|
|
12
|
274
|
13 setlocal ai nosi
|
233
|
14
|
274
|
15 let b:undo_indent = "setl ai< si<"
|