annotate runtime/indent/lisp.vim @ 2287:573da4dac306
vim73
Make the dos installer work with more compilers.
author |
Bram Moolenaar <bram@vim.org> |
date |
Wed, 07 Jul 2010 15:14:03 +0200 |
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<"
|