1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/local/bin/tclsh
# ==================================================================
# FILE: "/home/joze/bin/script/vimtags"
# LAST MODIFIED: "Thu Oct 01 13:20:11 1998 (joze)"
# (c) 1998 by Johannes Zellner
# Johannes.Zellner@physik.uni-karlsruhe.de
# $Id$
# ==================================================================
if [file readable tags] {
set tags [open tags r]
set vim [open tags.vim w]
while {[gets $tags line] != -1} {
if [regexp "^\(\[^ !\]*\)\[ \]" $line all proc] {
set proc [string trim $proc]
if {$proc != ""} {
puts $vim "syntax keyword Tag $proc"
}
}
}
close $tags
|
|
<
<
<
>
>
>
>
>
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/local/bin/tclsh
# ==================================================================
# FILE: aux/vimtags
# $Id$
# ---
# tclreadline -- gnu readline for tcl
# http://www.zellner.org/tclreadline/
# Copyright (c) 1998 - 2014, Johannes Zellner <johannes@zellner.org>
# This software is copyright under the BSD license.
# ==================================================================
if [file readable tags] {
set tags [open tags r]
set vim [open tags.vim w]
while {[gets $tags line] != -1} {
if [regexp "^\(\[^ !\]*\)\[ \]" $line all proc] {
set proc [string trim $proc]
if {$proc != ""} {
puts $vim "syntax keyword Tag $proc"
}
}
}
close $tags
|