annotate runtime/indent/scheme.vim @ 22139:c7fb7361df33
v8.2.1619
patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest()
Commit: https://github.com/vim/vim/commit/7c27f337bf278babc1ccdcb66ac975f115d660b7
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 5 22:45:55 2020 +0200
patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest()
Problem: Vim9: cannot pass "true" to spellsuggest().
Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6883)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 05 Sep 2020 23:00:03 +0200 |
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
|