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
|
1447 |
mateusz.vi |
14 |
- auto-detects color and monochrome video modes
|
1457 |
mateusz.vi |
15 |
- supports unusual text modes like 80x43, 80x50, 132x60, 40x25...
|
1344 |
mateusz.vi |
16 |
- multilingual UI
|
1431 |
mateusz.vi |
17 |
- only 7 KiB of disk footprint
|
1447 |
mateusz.vi |
18 |
- screen estate dedicated to text (no stupid frames, menus and such)
|
1344 |
mateusz.vi |
19 |
- loads files larger than 64 KiB
|
1431 |
mateusz.vi |
20 |
- no line length limit
|
1447 |
mateusz.vi |
21 |
- can load up to 10 files simultaneously
|
1457 |
mateusz.vi |
22 |
- COPY/CUT/PASTE between files
|
1431 |
mateusz.vi |
23 |
- handles CR/LF and LF line endings and can convert between them
|
1344 |
mateusz.vi |
24 |
|
1366 |
mateusz.vi |
25 |
What SVED does NOT have:
|
1344 |
mateusz.vi |
26 |
|
|
|
27 |
- mouse support
|
1356 |
mateusz.vi |
28 |
- an integrated file browser
|
1344 |
mateusz.vi |
29 |
- undo
|
|
|
30 |
- search
|
|
|
31 |
- ...
|
|
|
32 |
|
1354 |
mateusz.vi |
33 |
|
|
|
34 |
### USAGE AND KEY BINDINGS ###################################################
|
|
|
35 |
|
|
|
36 |
Navigation within the text file is achieved through the usual, standard keys:
|
|
|
37 |
- up, down, right and left arrows
|
|
|
38 |
- PageUp / PageDown
|
|
|
39 |
- Home / End
|
|
|
40 |
|
1410 |
mateusz.vi |
41 |
On top of these, the following key bindings are available:
|
1354 |
mateusz.vi |
42 |
|
1410 |
mateusz.vi |
43 |
ESC = access the program's menu
|
|
|
44 |
CTRL+RIGHT = jump to next word
|
|
|
45 |
CTRL+LEFT = jump to previous word
|
|
|
46 |
CTRL+C = copy the current line to clipboard
|
|
|
47 |
CTRL+X = cut the current line and move it to clipboard
|
|
|
48 |
CTRL+V = paste the clipboard content to current location
|
1354 |
mateusz.vi |
49 |
|
1366 |
mateusz.vi |
50 |
SVED can load up to 10 files simultaneously. To switch from one file to
|
1410 |
mateusz.vi |
51 |
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
|
1354 |
mateusz.vi |
52 |
|
1355 |
mateusz.vi |
53 |
|
1366 |
mateusz.vi |
54 |
### MULTILINGUAL SUPPORT #####################################################
|
|
|
55 |
|
1397 |
mateusz.vi |
56 |
The LNG file contains non-english strings. It should be placed in the same
|
|
|
57 |
directory where the program's executable resides. The UI language is
|
1366 |
mateusz.vi |
58 |
controlled by the LANG environment variable, for example SET LANG=PL would
|
|
|
59 |
make it display polish strings.
|
1457 |
mateusz.vi |
60 |
Following LANG settings are supported: EN FR PL RU.
|
1366 |
mateusz.vi |
61 |
|
1397 |
mateusz.vi |
62 |
If you rename the SVED.COM executable (for example to EDIT.COM), then you need
|
|
|
63 |
to rename the LNG file accordingly (for example to EDIT.LNG).
|
1366 |
mateusz.vi |
64 |
|
1457 |
mateusz.vi |
65 |
You can safely delete the LNG file if you are happy with an english-only UI
|
|
|
66 |
and wish to free a bit of disk space.
|
1366 |
mateusz.vi |
67 |
|
|
|
68 |
|
1448 |
mateusz.vi |
69 |
### CHANGELOG ################################################################
|
|
|
70 |
|
1453 |
mateusz.vi |
71 |
2023.2 [07 Aug 2023]
|
1456 |
mateusz.vi |
72 |
- added french translations
|
1453 |
mateusz.vi |
73 |
- fixed saving to new file passed on command-line
|
|
|
74 |
|
1450 |
mateusz.vi |
75 |
2023.1 [07 Aug 2023]
|
1448 |
mateusz.vi |
76 |
- fixed onscreen garbage when opening a non-existent file (sved notexist.txt)
|
1450 |
mateusz.vi |
77 |
- abort with error when an invalid filename is given as argument (sved *)
|
1448 |
mateusz.vi |
78 |
|
|
|
79 |
2023.0 [07 Aug 2023]
|
|
|
80 |
- initial release
|
|
|
81 |
|
|
|
82 |
|
1354 |
mateusz.vi |
83 |
### LICENSE ##################################################################
|
|
|
84 |
|
1366 |
mateusz.vi |
85 |
The SvarDOS editor (SVED) is released under the terms of the MIT license.
|
1344 |
mateusz.vi |
86 |
|
|
|
87 |
Copyright (C) 2023 Mateusz Viste
|
|
|
88 |
|
|
|
89 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
90 |
of this software and associated documentation files (the "Software"), to deal
|
|
|
91 |
in the Software without restriction, including without limitation the rights
|
|
|
92 |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
93 |
copies of the Software, and to permit persons to whom the Software is
|
|
|
94 |
furnished to do so, subject to the following conditions:
|
|
|
95 |
|
|
|
96 |
The above copyright notice and this permission notice shall be included in
|
|
|
97 |
all copies or substantial portions of the Software.
|
|
|
98 |
|
|
|
99 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
100 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
101 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
102 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
103 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
104 |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
105 |
SOFTWARE.
|
1354 |
mateusz.vi |
106 |
|
|
|
107 |
|
|
|
108 |
###################################################################### EOF ###
|