annotate runtime/indent/pyrex.vim @ 20339:7587d892c00c
v8.2.0725
patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 script
Commit: https://github.com/vim/vim/commit/09689a02840be40fa7bb10b1921fb5bc5b2908f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 9 22:50:08 2020 +0200
patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 script
Problem: Vim9: cannot call a function declared later in Vim9 script.
Solution: Make two passes through the script file.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 09 May 2020 23:00:04 +0200 |
parents |
644578c9e219 |
children |
|
rev |
line source |
7
|
1 " Vim indent file
|
|
2 " Language: Pyrex
|
|
3 " Maintainer: Marco Barisione <marco.bari@people.it>
|
|
4 " URL: http://marcobari.altervista.org/pyrex_vim.html
|
355
|
5 " Last Change: 2005 Jun 24
|
|
6
|
|
7 " Only load this indent file when no other was loaded.
|
|
8 if exists("b:did_indent")
|
|
9 finish
|
|
10 endif
|
7
|
11
|
|
12 " Use Python formatting rules
|
|
13 runtime! indent/python.vim
|