1344 |
mateusz.vi |
1 |
|
|
|
2 |
|
1366 |
mateusz.vi |
3 |
THE SVARDOS EDITOR
|
1344 |
mateusz.vi |
4 |
|
|
|
5 |
|
1366 |
mateusz.vi |
6 |
### WHAT IT IS ###############################################################
|
1354 |
mateusz.vi |
7 |
|
1366 |
mateusz.vi |
8 |
The SvarDOS editor (SVED) is designed for basic editing of configuration files
|
|
|
9 |
and such. It is NOT meant to be a full-featured text editor. On the pro side,
|
|
|
10 |
it has a low memory footprint and is only a couple kilobytes big, which makes
|
1411 |
mateusz.vi |
11 |
it a good fit for bootdisks and systems with extremely limited resources.
|
1344 |
mateusz.vi |
12 |
|
|
|
13 |
- runs comfortably on a 8086-class PC with 256 KiB of RAM
|
1411 |
mateusz.vi |
14 |
- autodetects color and monochrome video modes
|
1344 |
mateusz.vi |
15 |
- supports extended text modes like 80x43, 80x50...
|
|
|
16 |
- multilingual UI
|
1411 |
mateusz.vi |
17 |
- takes only 7 KiB of disk footprint
|
1344 |
mateusz.vi |
18 |
- loads files larger than 64 KiB
|
|
|
19 |
- no limit on line lengths
|
1355 |
mateusz.vi |
20 |
- can load up to 10 files simulteanously
|
1366 |
mateusz.vi |
21 |
- handles CR/LF and LF line endings and can convert between the two
|
1344 |
mateusz.vi |
22 |
|
1366 |
mateusz.vi |
23 |
What SVED does NOT have:
|
1344 |
mateusz.vi |
24 |
|
|
|
25 |
- mouse support
|
1356 |
mateusz.vi |
26 |
- an integrated file browser
|
1344 |
mateusz.vi |
27 |
- undo
|
|
|
28 |
- search
|
|
|
29 |
- ...
|
|
|
30 |
|
1354 |
mateusz.vi |
31 |
|
|
|
32 |
### USAGE AND KEY BINDINGS ###################################################
|
|
|
33 |
|
|
|
34 |
Navigation within the text file is achieved through the usual, standard keys:
|
|
|
35 |
- up, down, right and left arrows
|
|
|
36 |
- PageUp / PageDown
|
|
|
37 |
- Home / End
|
|
|
38 |
|
1410 |
mateusz.vi |
39 |
On top of these, the following key bindings are available:
|
1354 |
mateusz.vi |
40 |
|
1410 |
mateusz.vi |
41 |
ESC = access the program's menu
|
|
|
42 |
CTRL+RIGHT = jump to next word
|
|
|
43 |
CTRL+LEFT = jump to previous word
|
|
|
44 |
CTRL+C = copy the current line to clipboard
|
|
|
45 |
CTRL+X = cut the current line and move it to clipboard
|
|
|
46 |
CTRL+V = paste the clipboard content to current location
|
1354 |
mateusz.vi |
47 |
|
1366 |
mateusz.vi |
48 |
SVED can load up to 10 files simultaneously. To switch from one file to
|
1410 |
mateusz.vi |
49 |
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
|
1354 |
mateusz.vi |
50 |
|
1355 |
mateusz.vi |
51 |
|
1366 |
mateusz.vi |
52 |
### MULTILINGUAL SUPPORT #####################################################
|
|
|
53 |
|
1397 |
mateusz.vi |
54 |
The LNG file contains non-english strings. It should be placed in the same
|
|
|
55 |
directory where the program's executable resides. The UI language is
|
1366 |
mateusz.vi |
56 |
controlled by the LANG environment variable, for example SET LANG=PL would
|
|
|
57 |
make it display polish strings.
|
|
|
58 |
|
1397 |
mateusz.vi |
59 |
If you rename the SVED.COM executable (for example to EDIT.COM), then you need
|
|
|
60 |
to rename the LNG file accordingly (for example to EDIT.LNG).
|
1366 |
mateusz.vi |
61 |
|
1397 |
mateusz.vi |
62 |
You can safely delete the LNG file if you do not need non-english UI and wish
|
|
|
63 |
to free some disk space.
|
1366 |
mateusz.vi |
64 |
|
|
|
65 |
|
1354 |
mateusz.vi |
66 |
### LICENSE ##################################################################
|
|
|
67 |
|
1366 |
mateusz.vi |
68 |
The SvarDOS editor (SVED) is released under the terms of the MIT license.
|
1344 |
mateusz.vi |
69 |
|
|
|
70 |
Copyright (C) 2023 Mateusz Viste
|
|
|
71 |
|
|
|
72 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
73 |
of this software and associated documentation files (the "Software"), to deal
|
|
|
74 |
in the Software without restriction, including without limitation the rights
|
|
|
75 |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
76 |
copies of the Software, and to permit persons to whom the Software is
|
|
|
77 |
furnished to do so, subject to the following conditions:
|
|
|
78 |
|
|
|
79 |
The above copyright notice and this permission notice shall be included in
|
|
|
80 |
all copies or substantial portions of the Software.
|
|
|
81 |
|
|
|
82 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
83 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
84 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
85 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
86 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
87 |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
88 |
SOFTWARE.
|
1354 |
mateusz.vi |
89 |
|
|
|
90 |
|
|
|
91 |
###################################################################### EOF ###
|