Scite 快速入门 Xhtml |
|
这不好笑吗?
function quickstartxhtml() editor:AddText([[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title></title> </head> <body> </body> </html>]]) end
command.name.14.*=Snippet command.14.*=Snippet command.subsystem.14.*=3 command.mode.14.*=savebefore:no command.shortcut.14.*=Ctrl+. function snippet() editor:WordLeftEndExtend() local sel = editor:GetSelText() editor:ReplaceSel('') dostring(sel .. '()') end
所以要使用上面的例子,你可以输入 'quickstartxhtml'(或者可能是更短的词),然后按 Ctrl + .(句号),该特定函数中的文本就会出现。
Russell Beattie