Subversion Repositories SvarDOS

Rev

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

Rev 1397 Rev 1410
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 or systems with extremely limited ressources.
11
it a good fit for bootdisks or systems with extremely limited ressources.
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
 - supports color and monochrome video modes
14
 - supports color and monochrome video modes
15
 - supports extended text modes like 80x43, 80x50...
15
 - supports extended text modes like 80x43, 80x50...
16
 - multilingual UI
16
 - multilingual UI
17
 - less than 7 KiB of disk footprint
17
 - less than 7 KiB of disk footprint
18
 - loads files larger than 64 KiB
18
 - loads files larger than 64 KiB
19
 - no limit on line lengths
19
 - no limit on line lengths
20
 - can load up to 10 files simulteanously
20
 - can load up to 10 files simulteanously
21
 - handles CR/LF and LF line endings and can convert between the two
21
 - handles CR/LF and LF line endings and can convert between the two
22
 
22
 
23
What SVED does NOT have:
23
What SVED does NOT have:
24
 
24
 
25
 - mouse support
25
 - mouse support
26
 - an integrated file browser
26
 - an integrated file browser
27
 - copy/paste support
27
 - copy/paste support
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
Jumping to previous or next word is possible with the CTRL+LEFT and CTRL+RIGHT
40
On top of these, the following key bindings are available:
41
combinations.
-
 
42
 
41
 
43
Program's menu is accessible under the ESC key.
42
ESC        = access the program's menu
-
 
43
CTRL+RIGHT = jump to next word
-
 
44
CTRL+LEFT  = jump to previous word
-
 
45
CTRL+C     = copy the current line to clipboard
-
 
46
CTRL+X     = cut the current line and move it to clipboard
-
 
47
CTRL+V     = paste the clipboard content to current location
44
 
48
 
45
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
46
another use the F1..F10 function keys (F1 = slot 1, F2 = slot 2, etc).
50
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
47
 
51
 
48
 
52
 
49
### MULTILINGUAL SUPPORT #####################################################
53
### MULTILINGUAL SUPPORT #####################################################
50
 
54
 
51
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
52
directory where the program's executable resides. The UI language is
56
directory where the program's executable resides. The UI language is
53
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
54
make it display polish strings.
58
make it display polish strings.
55
 
59
 
56
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
57
to rename the LNG file accordingly (for example to EDIT.LNG).
61
to rename the LNG file accordingly (for example to EDIT.LNG).
58
 
62
 
59
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
60
to free some disk space.
64
to free some disk space.
61
 
65
 
62
 
66
 
63
### LICENSE ##################################################################
67
### LICENSE ##################################################################
64
 
68
 
65
The SvarDOS editor (SVED) is released under the terms of the MIT license.
69
The SvarDOS editor (SVED) is released under the terms of the MIT license.
66
 
70
 
67
Copyright (C) 2023 Mateusz Viste
71
Copyright (C) 2023 Mateusz Viste
68
 
72
 
69
Permission is hereby granted, free of charge, to any person obtaining a copy
73
Permission is hereby granted, free of charge, to any person obtaining a copy
70
of this software and associated documentation files (the "Software"), to deal
74
of this software and associated documentation files (the "Software"), to deal
71
in the Software without restriction, including without limitation the rights
75
in the Software without restriction, including without limitation the rights
72
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
76
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
73
copies of the Software, and to permit persons to whom the Software is
77
copies of the Software, and to permit persons to whom the Software is
74
furnished to do so, subject to the following conditions:
78
furnished to do so, subject to the following conditions:
75
 
79
 
76
The above copyright notice and this permission notice shall be included in
80
The above copyright notice and this permission notice shall be included in
77
all copies or substantial portions of the Software.
81
all copies or substantial portions of the Software.
78
 
82
 
79
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
83
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
80
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
84
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
81
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
85
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
82
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
86
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
83
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
87
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
84
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
88
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
85
SOFTWARE.
89
SOFTWARE.
86
 
90
 
87
 
91
 
88
###################################################################### EOF ###
92
###################################################################### EOF ###
89
 
93