Bram Moolenaar | f913281 | 2015-07-21 19:19:13 +0200 | [diff] [blame] | 1 | " Vim indent file |
| 2 | " Language: Tera Term Language (TTL) |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame^] | 3 | " Based on Tera Term Version 4.92 |
Bram Moolenaar | f913281 | 2015-07-21 19:19:13 +0200 | [diff] [blame] | 4 | " Maintainer: Ken Takata |
| 5 | " URL: https://github.com/k-takata/vim-teraterm |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame^] | 6 | " Last Change: 2016 Aug 17 |
Bram Moolenaar | f913281 | 2015-07-21 19:19:13 +0200 | [diff] [blame] | 7 | " Filenames: *.ttl |
| 8 | " License: VIM License |
| 9 | |
| 10 | if exists("b:did_indent") |
| 11 | finish |
| 12 | endif |
| 13 | let b:did_indent = 1 |
| 14 | |
| 15 | setlocal nosmartindent |
| 16 | setlocal noautoindent |
| 17 | setlocal indentexpr=GetTeraTermIndent(v:lnum) |
| 18 | setlocal indentkeys=!^F,o,O,e |
| 19 | setlocal indentkeys+==elseif,=endif,=loop,=next,=enduntil,=endwhile |
| 20 | |
| 21 | if exists("*GetTeraTermIndent") |
| 22 | finish |
| 23 | endif |
| 24 | |
| 25 | " The shiftwidth() function is relatively new. |
| 26 | " Don't require it to exist. |
| 27 | if exists('*shiftwidth') |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame^] | 28 | let s:sw = function('shiftwidth') |
Bram Moolenaar | f913281 | 2015-07-21 19:19:13 +0200 | [diff] [blame] | 29 | else |
| 30 | function s:sw() abort |
| 31 | return &shiftwidth |
| 32 | endfunction |
| 33 | endif |
| 34 | |
| 35 | function! GetTeraTermIndent(lnum) |
| 36 | let l:prevlnum = prevnonblank(a:lnum-1) |
| 37 | if l:prevlnum == 0 |
| 38 | " top of file |
| 39 | return 0 |
| 40 | endif |
| 41 | |
| 42 | " grab the previous and current line, stripping comments. |
| 43 | let l:prevl = substitute(getline(l:prevlnum), ';.*$', '', '') |
| 44 | let l:thisl = substitute(getline(a:lnum), ';.*$', '', '') |
| 45 | let l:previ = indent(l:prevlnum) |
| 46 | |
| 47 | let l:ind = l:previ |
| 48 | |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame^] | 49 | if l:prevl =~ '^\s*if\>.*\<then\>' |
Bram Moolenaar | f913281 | 2015-07-21 19:19:13 +0200 | [diff] [blame] | 50 | " previous line opened a block |
| 51 | let l:ind += s:sw() |
| 52 | endif |
| 53 | if l:prevl =~ '^\s*\%(elseif\|else\|do\|until\|while\|for\)\>' |
| 54 | " previous line opened a block |
| 55 | let l:ind += s:sw() |
| 56 | endif |
| 57 | if l:thisl =~ '^\s*\%(elseif\|else\|endif\|enduntil\|endwhile\|loop\|next\)\>' |
| 58 | " this line closed a block |
| 59 | let l:ind -= s:sw() |
| 60 | endif |
| 61 | |
| 62 | return l:ind |
| 63 | endfunction |
| 64 | |
| 65 | " vim: ts=8 sw=2 sts=2 |