Mercurial > vim
view runtime/indent/testdir/tcl.in @ 29338:f4f531986753 v9.0.0012
patch 9.0.0012: signature files not detected properly
Commit: https://github.com/vim/vim/commit/cdbfc6dbab1d63aa56af316d6b13e37939e7f7a8
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 30 16:25:21 2022 +0100
patch 9.0.0012: signature files not detected properly
Problem: Signature files not detected properly.
Solution: Add a function to better detect signature files. (Doug Kearns)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 30 Jun 2022 17:30:06 +0200 |
parents | 8b334e4cb97f |
children |
line wrap: on
line source
# vim: set filetype=tcl shiftwidth=4 tabstop=8 expandtab : # 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