vim-tcl

Top-level Files of tip
Login

Files in the top-level directory from the latest check-in


To use:

point your runtimepath at this directory.  Usually that's
just a matter of telling your plugin manager about it.

With junegunn/vim-plug, just give it an absolute path:

  Plug('/home/aspect/src/vim-tcl')


Extra:  plugin/fossil.vim from
    http://chiselapp.com/user/tuto/repository/vim-fossil
  .. because all Tcl users use fossil, right? :)

Sources:

    indent: http://www.vim.org/scripts/script.php?script_id=1717
    syntax: http://www.vim.org/scripts/script.php?script_id=1603
  + extensions

Modified syntax/tcl.vim as follows:

  * enabled highlight options and extended syntax
  * fixed line 68:

-    syn region tclComment       contained extend keepend start=+^\s*\#+ms=e-1 start=+\([;{]\s*\)\@<=\#+ end="\\\s\+$\|$" skip=+\\$\|\(\\\)\@<!\\}+ end="}"me=e-1 contains=tclTodo,@tclLContinue,@Spell,tclCommentBraces
+    syn region tclComment       contained extend keepend start=+^\s*\#+ms=e-1 start=+\([;{]\s*\)\@<=\#+ end="\\\s\+$\|$" skip=+\\$\|\(\\\)\@<!\\}+ end="}" contains=tclTodo,@tclLContinue,@Spell,tclCommentBraces

  .. this seems to screw up in different instances .. sigh