view runtime/indent/testdir/tcl.in @ 15131:bc1a8d21c811

Update runtime files. commit https://github.com/vim/vim/commit/d47d52232bf21036c5c89081458be7eaf2630d24 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 9 20:43:55 2018 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Dec 2018 20:45:05 +0100
parents
children 8b334e4cb97f
line wrap: on
line source

# vim: set filetype=tcl shiftwidth=4 tabstop=4:

# START_INDENT
proc abc {} {
set a 5
if {[some_cmd]==1} {
foreach i [list {1 2 3}] {
# Does this comment affect anything?
puts $i
}
}
}

command_with_a_long_time -arg1 "First" \
-arg2 "Second" \
-arg3 "Third"

puts "Move indent back after line continuation is complete"
# END_INDENT