Subversion Repositories SvarDOS

Rev

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

Rev 1410 Rev 1411
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 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
 - supports color and monochrome video modes
14
 - autodetects 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
 - takes only 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
-
 
28
 - undo
27
 - undo
29
 - search
28
 - search
30
 - ...
29
 - ...
31
 
30
 
32
 
31
 
33
### USAGE AND KEY BINDINGS ###################################################
32
### USAGE AND KEY BINDINGS ###################################################
34
 
33
 
35
Navigation within the text file is achieved through the usual, standard keys:
34
Navigation within the text file is achieved through the usual, standard keys:
36
 - up, down, right and left arrows
35
 - up, down, right and left arrows
37
 - PageUp / PageDown
36
 - PageUp / PageDown
38
 - Home / End
37
 - Home / End
39
 
38
 
40
On top of these, the following key bindings are available:
39
On top of these, the following key bindings are available:
41
 
40
 
42
ESC        = access the program's menu
41
ESC        = access the program's menu
43
CTRL+RIGHT = jump to next word
42
CTRL+RIGHT = jump to next word
44
CTRL+LEFT  = jump to previous word
43
CTRL+LEFT  = jump to previous word
45
CTRL+C     = copy the current line to clipboard
44
CTRL+C     = copy the current line to clipboard
46
CTRL+X     = cut the current line and move it to clipboard
45
CTRL+X     = cut the current line and move it to clipboard
47
CTRL+V     = paste the clipboard content to current location
46
CTRL+V     = paste the clipboard content to current location
48
 
47
 
49
SVED can load up to 10 files simultaneously. To switch from one file to
48
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).
49
another use the F1..F10 function keys (F1 = file 1, F2 = file 2, etc).
51
 
50
 
52
 
51
 
53
### MULTILINGUAL SUPPORT #####################################################
52
### MULTILINGUAL SUPPORT #####################################################
54
 
53
 
55
The LNG file contains non-english strings. It should be placed in the same
54
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
55
directory where the program's executable resides. The UI language is
57
controlled by the LANG environment variable, for example SET LANG=PL would
56
controlled by the LANG environment variable, for example SET LANG=PL would
58
make it display polish strings.
57
make it display polish strings.
59
 
58
 
60
If you rename the SVED.COM executable (for example to EDIT.COM), then you need
59
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).
60
to rename the LNG file accordingly (for example to EDIT.LNG).
62
 
61
 
63
You can safely delete the LNG file if you do not need non-english UI and wish
62
You can safely delete the LNG file if you do not need non-english UI and wish
64
to free some disk space.
63
to free some disk space.
65
 
64
 
66
 
65
 
67
### LICENSE ##################################################################
66
### LICENSE ##################################################################
68
 
67
 
69
The SvarDOS editor (SVED) is released under the terms of the MIT license.
68
The SvarDOS editor (SVED) is released under the terms of the MIT license.
70
 
69
 
71
Copyright (C) 2023 Mateusz Viste
70
Copyright (C) 2023 Mateusz Viste
72
 
71
 
73
Permission is hereby granted, free of charge, to any person obtaining a copy
72
Permission is hereby granted, free of charge, to any person obtaining a copy
74
of this software and associated documentation files (the "Software"), to deal
73
of this software and associated documentation files (the "Software"), to deal
75
in the Software without restriction, including without limitation the rights
74
in the Software without restriction, including without limitation the rights
76
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
75
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
77
copies of the Software, and to permit persons to whom the Software is
76
copies of the Software, and to permit persons to whom the Software is
78
furnished to do so, subject to the following conditions:
77
furnished to do so, subject to the following conditions:
79
 
78
 
80
The above copyright notice and this permission notice shall be included in
79
The above copyright notice and this permission notice shall be included in
81
all copies or substantial portions of the Software.
80
all copies or substantial portions of the Software.
82
 
81
 
83
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
84
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
85
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
84
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
86
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
85
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
87
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
86
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
88
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
87
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
89
SOFTWARE.
88
SOFTWARE.
90
 
89
 
91
 
90
 
92
###################################################################### EOF ###
91
###################################################################### EOF ###
93
 
92