annotate runtime/indent/testdir/tcl.in @ 25577:6b711b01f2ca
v8.2.3325
patch 8.2.3325: digraph test fails when LC_ALL is set to "C"
Commit: https://github.com/vim/vim/commit/52eb372a04dfc5d5afef238c1b3c4a8e92020837
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 10 21:39:20 2021 +0200
patch 8.2.3325: digraph test fails when LC_ALL is set to "C"
Problem: Digraph test fails when LC_ALL is set to "C".
Solution: When restoring 'encoding' set it to "utf-8". (closes https://github.com/vim/vim/issues/8742)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 10 Aug 2021 21:45:04 +0200 |
parents |
8b334e4cb97f |
children |
|
rev |
line source |
15194
|
1 # vim: set filetype=tcl shiftwidth=4 tabstop=8 expandtab :
|
15131
|
2
|
|
3 # START_INDENT
|
|
4 proc abc {} {
|
|
5 set a 5
|
|
6 if {[some_cmd]==1} {
|
|
7 foreach i [list {1 2 3}] {
|
|
8 # Does this comment affect anything?
|
|
9 puts $i
|
|
10 }
|
|
11 }
|
|
12 }
|
|
13
|
|
14 command_with_a_long_time -arg1 "First" \
|
|
15 -arg2 "Second" \
|
|
16 -arg3 "Third"
|
|
17
|
|
18 puts "Move indent back after line continuation is complete"
|
|
19 # END_INDENT |