Subversion Repositories SvarDOS

Rev

Rev 1448 | Rev 1456 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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