Mercurial > vim
view runtime/indent/testdir/tcl.in @ 16894:236c182c6300 v8.1.1448
patch 8.1.1448: statusline is sometimes drawn on top of popup
commit https://github.com/vim/vim/commit/988c43310a8dcfad9fbacd110b50ba220227d19a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 2 14:12:11 2019 +0200
patch 8.1.1448: statusline is sometimes drawn on top of popup
Problem: Statusline is sometimes drawn on top of popup.
Solution: Redraw popups after the statusline. (Naruhiko Nishino,
closes #4468)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Jun 2019 14:15: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