CIMM4H4TL7J2ZFPYCX72U4IA4NA2UEZRNOFYXDQAE7NMP3KGUN5AC
MRACWFTXRGBS3YIV6WENFEMSORAVQSXLUZMLZGO34ZLM7P5K4JDQC
NKXXGBPMUBFVEBTQAWPKWTQBAGXGLAZFTSJVYISLPCFNEB3W32NAC
B25NZLZ6EEHFF4UYG2V4X3J7HSKJFRG23NEPJ2IGPIF4K25SWEJAC
4VBB7Y7D2UZG2QOTOBMCZ7LLXHOO2NUNDNE65KVMPLPPSM3NNOWQC
X67UDEKTINM2THRLJYLGNAIWNACWWZ4MLTLZPHM6EIRNJUT2FCHQC
DVEX4AUHJELQTLR2XPSUYQJTBHYXKCGMU7M6UIYRU6HWS6QNE4GAC
end;
function FieldAtCursor(Field: TField; Row, Col: Integer): Boolean;
begin
FieldAtCursor := (Field.CursorRow = Row) and (Field.CursorCol = Col);
end;
function FieldAroundCursor(Field: TField; Row, Col: Integer): Boolean;
var
DRow, DCol: Integer;
begin
for DRow := -1 to 1 do
for DCol := -1 to 1 do
if (Field.CursorRow + DRow = Row) and (Field.CursorCol + DCol = Col) then
Exit(True);
FieldAroundCursor := False;
Field.CursorRow := 0;
Field.CursorCol := 0;
for Index := 0 to Field.Rows * Field.Cols do
begin
Field.Cells[Index] := Empty;
Field.Open[Index] := False;
end;
for Index := 0 to Field.Rows * Field.Cols do Field.Cells[Index] := Empty;
vim.opt.tagcase = "ignore"
vim.opt.tags = "./tags,tags,./mine.tags"