Subversion Repositories SvarDOS

Rev

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

Rev 1355 Rev 1356
1
 
1
 
2
 
2
 
3
                           SVED, THE SVARDOS EDITOR
3
                           SVED, THE SVARDOS EDITOR
4
 
4
 
5
 
5
 
6
### WHAT IS IT ###############################################################
6
### WHAT IS IT ###############################################################
7
 
7
 
8
Sved is the default editor that comes with SvarDOS. Sved is not meant to be a
8
Sved is the default editor that comes with SvarDOS. Sved is not meant to be a
9
full-featured text editor, it is designed for basic editing of configuration
9
full-featured text editor, it is designed for basic editing of configuration
10
files and such. On the pro side, Sved has a very low memory footprint and
10
files and such. On the pro side, Sved has a very low memory footprint and
11
is only a couple of kilobytes big, which makes it a good fit for bootdisks or
11
is only a couple of kilobytes big, which makes it a good fit for bootdisks or
12
systems with extremely limited ressources.
12
systems with extremely limited ressources.
13
 
13
 
14
 - runs comfortably on a 8086-class PC with 256 KiB of RAM
14
 - runs comfortably on a 8086-class PC with 256 KiB of RAM
15
 - supports color and monochrome video modes
15
 - supports color and monochrome video modes
16
 - supports extended text modes like 80x43, 80x50...
16
 - supports extended text modes like 80x43, 80x50...
17
 - multilingual UI
17
 - multilingual UI
18
 - low disk footprint (8 KiB)
18
 - low disk footprint (8 KiB)
19
 - loads files larger than 64 KiB
19
 - loads files larger than 64 KiB
20
 - no limit on line lengths
20
 - no limit on line lengths
21
 - can load up to 10 files simulteanously
21
 - can load up to 10 files simulteanously
22
 - handles CR/LF and LF line endings (+can convert between the two)
22
 - handles CR/LF and LF line endings (+can convert between the two)
23
 
23
 
24
What Sved does NOT have:
24
What Sved does NOT have:
25
 
25
 
26
 - mouse support
26
 - mouse support
27
 - any integrated file browser
27
 - an integrated file browser
28
 - copy/paste support
28
 - copy/paste support
29
 - undo
29
 - undo
30
 - search
30
 - search
31
 - ...
31
 - ...
32
 
32
 
33
 
33
 
34
### USAGE AND KEY BINDINGS ###################################################
34
### USAGE AND KEY BINDINGS ###################################################
35
 
35
 
36
Navigation within the text file is achieved through the usual, standard keys:
36
Navigation within the text file is achieved through the usual, standard keys:
37
 - up, down, right and left arrows
37
 - up, down, right and left arrows
38
 - PageUp / PageDown
38
 - PageUp / PageDown
39
 - Home / End
39
 - Home / End
40
 
40
 
41
Jumping to previous or next word is possible with the CTRL+LEFT and CTRL+RIGHT
41
Jumping to previous or next word is possible with the CTRL+LEFT and CTRL+RIGHT
42
combinations.
42
combinations.
43
 
43
 
44
Program's menu is accessible under the ESC key.
44
Program's menu is accessible under the ESC key.
45
 
45
 
46
Sved can load up to 10 files simulteanously. To switch from one file to
46
Sved can load up to 10 files simulteanously. To switch from one file to
47
another use the F1..F10 function keys (F1 = slot 1, F2 = slot 2, etc).
47
another use the F1..F10 function keys (F1 = slot 1, F2 = slot 2, etc).
48
 
48
 
49
 
49
 
50
### LICENSE ##################################################################
50
### LICENSE ##################################################################
51
 
51
 
52
Sved is released under the terms of the MIT license.
52
Sved is released under the terms of the MIT license.
53
 
53
 
54
Copyright (C) 2023 Mateusz Viste
54
Copyright (C) 2023 Mateusz Viste
55
 
55
 
56
Permission is hereby granted, free of charge, to any person obtaining a copy
56
Permission is hereby granted, free of charge, to any person obtaining a copy
57
of this software and associated documentation files (the "Software"), to deal
57
of this software and associated documentation files (the "Software"), to deal
58
in the Software without restriction, including without limitation the rights
58
in the Software without restriction, including without limitation the rights
59
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
60
copies of the Software, and to permit persons to whom the Software is
60
copies of the Software, and to permit persons to whom the Software is
61
furnished to do so, subject to the following conditions:
61
furnished to do so, subject to the following conditions:
62
 
62
 
63
The above copyright notice and this permission notice shall be included in
63
The above copyright notice and this permission notice shall be included in
64
all copies or substantial portions of the Software.
64
all copies or substantial portions of the Software.
65
 
65
 
66
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
67
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
68
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
69
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
70
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
71
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
72
SOFTWARE.
72
SOFTWARE.
73
 
73
 
74
 
74
 
75
###################################################################### EOF ###
75
###################################################################### EOF ###
76
 
76