Update heredoc marker case to conform with vim patch 8.1.1723 (#1348)

This commit is contained in:
Charles 2020-04-17 09:26:09 +07:00 committed by GitHub
parent af7105f9ab
commit 8654e8d7ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ if !exists("g:black_skip_string_normalization")
let g:black_skip_string_normalization = 0
endif
python3 << endpython3
python3 << EndPython3
import collections
import os
import sys
@ -191,7 +191,7 @@ def BlackUpgrade():
def BlackVersion():
print(f'Black, version {black.__version__} on Python {sys.version}.')
endpython3
EndPython3
command! Black :py3 Black()
command! BlackUpgrade :py3 BlackUpgrade()