📄 mono.tcl
字号:
# mono.tcl - Dealing with monochrome.# Copyright (C) 1997 Cygnus Solutions.# Written by Tom Tromey <tromey@cygnus.com>.# It is safe to run this any number of times, so it is ok to have it# here. Defined as true if the user wants monochrome display.pref define global/monochrome 0# Return 1 if monochrome, 0 otherwise. This should be used to make# the application experience more friendly for colorblind users as# well as those stuck on mono displays.proc monochrome_p {} { return [expr {[pref get global/monochrome] || [winfo depth .] == 1}]}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -