blob: 77f24e9044f62cf2ba6335bcd48330dde0892e4b [file] [log] [blame]
Bram Moolenaar9d87a372018-12-18 21:41:50 +01001# vim: set filetype=tcl shiftwidth=4 tabstop=8 expandtab :
Bram Moolenaard47d5222018-12-09 20:43:55 +01002
3# START_INDENT
4proc abc {} {
Bram Moolenaar9d87a372018-12-18 21:41:50 +01005 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 }
Bram Moolenaard47d5222018-12-09 20:43:55 +010012}
13
14command_with_a_long_time -arg1 "First" \
Bram Moolenaar9d87a372018-12-18 21:41:50 +010015 -arg2 "Second" \
16 -arg3 "Third"
Bram Moolenaard47d5222018-12-09 20:43:55 +010017
18puts "Move indent back after line continuation is complete"
19# END_INDENT