Mercurial > vim
view runtime/indent/testdir/tcl.in @ 21373:3d73cdd173ab v8.2.1237
patch 8.2.1237: changing 'completepopup' after opening popup has no effect
Commit: https://github.com/vim/vim/commit/447bfba24b231777a79bf53cdb33f44d9691e47e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 18 16:07:16 2020 +0200
patch 8.2.1237: changing 'completepopup' after opening popup has no effect
Problem: Changing 'completepopup' after opening a popup has no effect. (Jay
Sitter)
Solution: Close the popup when the options are changed. (closes #6471)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 18 Jul 2020 16:15:04 +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