Subversion Repositories SvarDOS

Rev

Rev 1355 | Rev 1366 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1344 mateusz.vi 1
 
2
 
1354 mateusz.vi 3
                           SVED, THE SVARDOS EDITOR
1344 mateusz.vi 4
 
5
 
1354 mateusz.vi 6
### WHAT IS IT ###############################################################
7
 
1349 mateusz.vi 8
Sved is the default editor that comes with SvarDOS. Sved is not meant to be a
1344 mateusz.vi 9
full-featured text editor, it is designed for basic editing of configuration
1349 mateusz.vi 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
1344 mateusz.vi 12
systems with extremely limited ressources.
13
 
14
 - runs comfortably on a 8086-class PC with 256 KiB of RAM
15
 - supports color and monochrome video modes
16
 - supports extended text modes like 80x43, 80x50...
17
 - multilingual UI
18
 - low disk footprint (8 KiB)
19
 - loads files larger than 64 KiB
20
 - no limit on line lengths
1355 mateusz.vi 21
 - can load up to 10 files simulteanously
1344 mateusz.vi 22
 - handles CR/LF and LF line endings (+can convert between the two)
23
 
24
What Sved does NOT have:
25
 
26
 - mouse support
1356 mateusz.vi 27
 - an integrated file browser
1344 mateusz.vi 28
 - copy/paste support
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
 
41
Jumping to previous or next word is possible with the CTRL+LEFT and CTRL+RIGHT
42
combinations.
43
 
44
Program's menu is accessible under the ESC key.
45
 
1355 mateusz.vi 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).
1354 mateusz.vi 48
 
1355 mateusz.vi 49
 
1354 mateusz.vi 50
### LICENSE ##################################################################
51
 
1344 mateusz.vi 52
Sved is released under the terms of the MIT license.
53
 
54
Copyright (C) 2023 Mateusz Viste
55
 
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
58
in the Software without restriction, including without limitation the rights
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
61
furnished to do so, subject to the following conditions:
62
 
63
The above copyright notice and this permission notice shall be included in
64
all copies or substantial portions of the Software.
65
 
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,
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
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
72
SOFTWARE.
1354 mateusz.vi 73
 
74
 
75
###################################################################### EOF ###