annotate runtime/indent/scheme.vim @ 24178:d5328b2b0edf
v8.2.2630
patch 8.2.2630: hard to see where a test gets stuck
Commit: https://github.com/vim/vim/commit/592f57f5fec1064cc276a0d7992cc543bed04fd5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 20 16:44:25 2021 +0100
patch 8.2.2630: hard to see where a test gets stuck
Problem: Hard to see where a test gets stuck.
Solution: Print the executed test function. (Dominique Pell?, closes https://github.com/vim/vim/issues/7975)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 20 Mar 2021 16:45:02 +0100 |
parents |
167a030448fa |
children |
738ff39db93f |
rev |
line source |
321
|
1 " Vim indent file
|
13231
|
2 " Language: Scheme
|
|
3 " Last Change: 2018 Jan 31
|
|
4 " Maintainer: Evan Hanson <evhan@foldling.org>
|
|
5 " Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
|
|
6 " URL: https://foldling.org/vim/indent/scheme.vim
|
357
|
7
|
|
8 " Only load this indent file when no other was loaded.
|
|
9 if exists("b:did_indent")
|
|
10 finish
|
|
11 endif
|
321
|
12
|
13231
|
13 " Use the Lisp indenting
|
321
|
14 runtime! indent/lisp.vim
|