-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHexEditE.hlf
86 lines (67 loc) · 2.32 KB
/
HexEditE.hlf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.Language=English,English
.PluginContents=HexEditor
@Contents
$^#HexEditor FAR plugin#
$^#Version 1.2#
$^#Copyright (C) 1999 Alex Pakhotin#
Yes! It's a long-awaited hexadecimal editor for FAR!
Now you can edit data in binary mode.
~Keyboard reference~@Keys@
~Technical notes~@Tech@
~About the author~@Author@
~Thanks~@Thanks@
@Keys
$^#HexEditor FAR plugin#
$^#Version 1.2#
$^#Copyright (C) 1999 Alex Pakhotin#
Cursor movements
#Left# Character left
#Right# Character right
#Up# Line up
#Down# Line down
#Ctrl-Left# Byte left
#Ctrl-Right# Byte right
#PgUp# Page up
#PgDn# Page down
#Home# Start of line
#End# End of line
#Ctrl-Home# Start of file
#Ctrl-End# End of file
#Ctrl-PgUp# Start of screen
#Ctrl-PgDn# End of screen
Other operations
#Tab# Toggle hexadecimal and char modes
#F4# Return to the text editor with data saving
#F5# Go to specified address
#F7# Search
#Shift-F7# Continue search
#F10#,#Esc# Close HexEditor with confirmation
@Tech
$^#HexEditor FAR plugin#
$^#Version 1.2#
$^#Copyright (C) 1999 Alex Pakhotin#
#Technical notes#
Data in the FAR text editor is stored as separate lines. So for binary editing
it has to be converted into continuous block, and after editing - back into the
lines. It's quite slow operation leading to delays when the lines number is big
enough.
If the data hasn't been changed in HexEditor the text in the editor isn't
changed too. So don't worry when you use HexEditor simply to view editor data
in the hexadecimal mode - it's non-destructive operation.
Program is written in C++ and compiled with Microsoft Visual C++ 5.
@Author
$^#HexEditor FAR plugin#
$^#Version 1.2#
$^#Copyright (C) 1999 Alex Pakhotin#
#About the author#
Alex Pakhotin, Omsk, Russia
2:5004/16.99@@FidoNet
alex@@apsofts.com
http://www.apsofts.com
@Thanks
$^#HexEditor FAR plugin#
$^#Version 1.2#
$^#Copyright (C) 1999 Alex Pakhotin#
#Thanks#
Thanks a lot to Eugene Roshal, the author of FAR, for his really GREAT program and
also for his help in writing this plugin.