⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 linefilter.pm

📁 codestriker is a develop useful tool to review code on web user interface.
💻 PM
字号:
################################################################################ Codestriker: Copyright (c) 2001, 2002 David Sitsky.  All rights reserved.# sits@users.sourceforge.net## This program is free software; you can redistribute it and modify it under# the terms of the GPL.# Base object for all line filter objects to extend from.  A line filter takes# a line of code and transforms it in some fashion.package Codestriker::Http::LineFilter;use strict;sub new {    my $type = shift;    my $self = {};    return bless $self, $type;}sub filter {    my ($self, $delta) = @_;    $delta->{diff_old_lines} = $self->_filter($delta->{diff_old_lines});    $delta->{diff_new_lines} = $self->_filter($delta->{diff_new_lines});}1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -