📄 viewfile
字号:
#!/bin/sh#\exec itkwish $0# ----------------------------------------------------------------------# EXAMPLE: show "TextInfo" and "MessageInfo" widgets in action# ----------------------------------------------------------------------# COURSE: Object-Oriented Programming with [incr Tcl]# AUTHOR: Michael J. McLennan, Bell Labs Innovations# ======================================================================# Copyright (c) 1996 Lucent Technologies# ======================================================================lappend auto_path .if {[string match *color [winfo screenvisual .]]} { option add *textBackground ivory startupFile option add *MessageInfo.background DarkSeaGreen startupFile option add *TextInfo.background DarkSeaGreen startupFile option add *activeBackground ForestGreen startupFile option add *activeForeground white startupFile option add *selectForeground white startupFile option add *selectBackground ForestGreen startupFile}label .label -text "View File:"pack .label -anchor wentry .filepack .file -fill xbind .file <KeyPress-Return> {show_file [.file get]}proc show_file {file} { set cmd { set fid [open $file r] set info [read $fid] close $fid } if {[catch $cmd] == 0} { set win [TextInfo .#auto -wrap none] $win display $info } else { MessageInfo .#auto -message "Cannot read file:\n$file" }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -