mod_speling.pl
来自「Unix下基于Web的管理工具」· PL 代码 · 共 24 行
PL
24 行
# mod_speling.pl# Defines editors spelling correction directivessub mod_speling_directives{$rv = [ [ 'CheckSpelling', 0, 5, 'virtual', '1.3-1.32' ], [ 'CheckSpelling', 0, 5, 'virtual directory htaccess', 1.32 ] ];return &make_directives($rv, $_[0], "mod_speling");}sub edit_CheckSpelling{return (1, "Automatically correct misspelled URLs?", &choice_input($_[0]->{'value'}, "CheckSpelling", "", "No,Off", "Yes,On", "Default,"));}sub save_CheckSpelling{return &parse_choice("CheckSpelling", "");}1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?