vim-patch:6e649224926b (#15911)

Update runtime files
6e64922492
This commit is contained in:
Christian Clason
2021-10-05 14:12:16 +02:00
committed by GitHub
parent 0a7a215aa6
commit 0c2a7aa5f7
43 changed files with 474 additions and 346 deletions

View File

@@ -2,7 +2,7 @@
" Language: Python
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu>
" Last Change: 2021 May 26
" Last Change: 2021 Sep 26
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
@@ -17,6 +17,8 @@ setlocal autoindent " indentexpr isn't much help otherwise
setlocal indentexpr=GetPythonIndent(v:lnum)
setlocal indentkeys+=<:>,=elif,=except
let b:undo_indent = "setl ai< inde< indk< lisp<"
" Only define the function once.
if exists("*GetPythonIndent")
finish