blob: 3ef4ebc0a8f6f1bf54f1ca81126845f6ec64911a [file] [log] [blame]
Bram Moolenaard47d5222018-12-09 20:43:55 +01001# vim: set filetype=tcl shiftwidth=4 tabstop=4:
2
3# START_INDENT
4proc abc {} {
5set a 5
6if {[some_cmd]==1} {
7foreach i [list {1 2 3}] {
8# Does this comment affect anything?
9puts $i
10}
11}
12}
13
14command_with_a_long_time -arg1 "First" \
15-arg2 "Second" \
16-arg3 "Third"
17
18puts "Move indent back after line continuation is complete"
19# END_INDENT