mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
- Allow using variable width font. - Fixed search next, allow searching backwards, highlight found text. - Fixed highlighting lines with TABs. - Fixed handling of wide character encodings (UTF-16). Added support for UTF-32. - Added auto-detection of file encoding. - Added handling of Unicode files with BOM.
21 lines
420 B
ObjectPascal
21 lines
420 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit !
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit viewerpackage;
|
|
|
|
interface
|
|
|
|
uses
|
|
ViewerControl, UnicodeUtils, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('ViewerControl', @ViewerControl.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('viewerpackage', @Register);
|
|
end.
|