📄 help.jam
字号:
#============================================================================# Rules for displaying help messages about targets#============================================================================## Help target : description## Adds a description to a target which will be shown to the user when## "jam help" is invoked.rule Help{ $(<)_help = $(>) ; local target = $(<:G=help) ; Depends help : $(target) ; NotFile $(>) ; PrintHelp $(target) : $(>) ; Always $(target) ;}#---------------------------------------------------------------------------- NotFile help ;Always help ;actions quietly PrintHelp{ # target width:13, description width:51 echo "jam ->$(<) <- =>$(>) <=" | \ sed 's/->\(..............\).*<-/\1/;s/=>\(...................................................\).*<=/\1/'}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -