📄 command.cmd
字号:
set trace-commands on# Debugger test of 'command' command## Try to set command when there is none.command 1## Now a command for a real breakpointbreak 23command 1x xend################################ Should see value of x below# from the command statmentbreak 25continue############################### Test of a changing# command statement. First# The setup.##############################command 2print x is now $xendcontinue##################################### Now we'll change the it####################################command 2print "testing overwriting commands"endcontinue##################################### Should have seen the testing message# above, not x. ## FIXME: theres a weird bug ## in evaluating expressions like $i# Now let's remove the command # altogether####################################command 2endcontinuequit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -