-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathTE.CF
95 lines (79 loc) · 2.16 KB
/
TE.CF
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# ========================================
# TE configuration file
# ----------------------------------------
# IMPORTANT! This file is for TECF, the TE
# configuration tool.
# ========================================
# Configuration name
#te.confName = "My own configuration"
# Screen height: 8..255 or auto for CP/M 3
#screen.rows = 25
# Screen width: 64..255 or auto for CP/M 3
#screen.columns = 80
# Character for normal position in ruler
#screen.rulerChar = "."
# Character for tab stop position in ruler
#screen.rulerTabChar = "!"
# Character for vertical draws -- ie: help columns
#screen.vertChar = "|"
# Character for horizontal draws -- ie: status line
#screen.horizChar = "-"
# Character between line numbers and text
screen.lineNumbersChar = " "
# How many lines can edit: 256..4096 -- each
# empty line occupies 2 bytes of RAM
editor.maxLines = 512
# How many columns (spaces) are a TAB: 1..16
editor.tabSize = 4
# Show line numbers: true / false
editor.lineNumbers = true
# C language type completion: [], {}, (), "", '', /**/
editor.c_language = true
# Automatically indent a new line as the previous one
editor.autoIndent = true
# Automatically start a list when the first non blank
# character in a line is one of "listBullets" -- max.
# 7 characters in long
editor.autoList = true
editor.listBullets = "-*>"
# Some keynames used in the UI
#keyname.newLine = "ENTER"
#keyname.escape = "ESC"
# Key bindings, legal definitions are:
# ^A -> Ctrl-A -> one control char.
# ^A^X -> Ctrl-A, Ctrl-X -> two control chars.
# ^AX -> Ctrl-A, X -> one control char., one char.
#
# Legal control characters are:
# ^A..^Z ^[ ^\ ^] ^^ ^_ -> 1..31
# ^? -> 127
#key.up = ""
#key.down = ""
#key.left = ""
#key.right = ""
#key.begin = ""
#key.end = ""
#key.top = ""
#key.bottom = ""
#key.pgUp = ""
#key.pgDown = ""
#key.indent = ""
#key.newLine = ""
#key.escape = ""
#key.delRight = ""
#key.delLeft = ""
#key.cut = ""
#key.copy = ""
#key.paste = ""
#key.delete = ""
#key.clearClip = ""
#key.find = ""
#key.findNext = ""
#key.goLine = ""
#key.wordLeft = ""
#key.wordRight = ""
#key.blockStart = ""
#key.blockEnd = ""
#key.blockUnset = ""
#key.macro = ""