-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathnimedit.cfg
More file actions
148 lines (132 loc) · 2.88 KB
/
nimedit.cfg
File metadata and controls
148 lines (132 loc) · 2.88 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# NimEdit Configuration File
# Colors are specified as hex integers (0xRRGGBB).
# Font styles: Normal, Bold, Italic, BoldItalic
[Theme]
editorFont = "DejaVuSansMono"
editorFontSize = 15
uiFont = "FreeSans"
uiFontSize = 12
uiXGap = 5
uiYGap = 5
uiActiveElement = 0xFFA500
uiInactiveElement = 0xC0C0C0
background = 0x292929
foreground = 0xfafafa
cursor = 0xfafafa
cursorWidth = 2
lines = 0x898989
selected = 0x000000
highlighted = 0x440000
showLines = true
showIndentation = true
indentation = 0x898989
tabWidth = 2
showBracket = true
showMinimap = true
bracket = 0xFF1493
consoleAfter = 900
consoleWidth = 40
showLigatures = false
nimsuggestPath = ""
[Tokens]
None = 0xffffff
Whitespace = 0xffffff
DecNumber = 0x00FFFF
BinNumber = 0x00FFFF
HexNumber = 0x00FFFF
OctNumber = 0x00FFFF
FloatNumber = 0x00FFFF
Identifier = 0xffffff
Keyword = 0xFFFF00
StringLit = 0xFFA500
LongStringLit = 0xFFA500
CharLit = 0xFFA500
Backticks = 0xFFA500
EscapeSequence = 0x808080
Operator = 0xffffff
Punctuation = 0xffffff
Comment = "0x44FF44, Italic"
LongComment = 0xFF1493
RegularExpression = 0xFF00FF
TagStart = 0xFFFF00
TagStandalone = 0xFFFF00
TagEnd = 0xFFFF00
Key = 0xff44ff
Value = 0x00FFFF
RawData = 0xFF00FF
Assembler = 0xFF00FF
Preprocessor = 0xFFFF00
Directive = 0xFFFF00
Command = 0xFFFF00
Rule = 0xFFFF00
Link = "0x00FFFF, Bold"
Label = 0x00FFFF
Reference = 0x00FFFF
Text = 0xffffff
Other = 0xffffff
Red = 0xFF0000
Green = 0x44FF44
Yellow = 0xFFFF00
Breakpoint1 = 0xFF0000
Breakpoint2 = 0xFFA500
LineActive = 0xFFFF00
[Keys]
Left = Left
Right = Right
Up = Up
Down = Down
PageUp = PageUp
PageDown = PageDown
"Ctrl+Left" = LeftJump
"Ctrl+Right" = RightJump
"Ctrl+Up" = UpJump
"Ctrl+Down" = DownJump
"Shift+Left" = LeftSelect
"Shift+Right" = RightSelect
"Shift+Up" = UpSelect
"Shift+Down" = DownSelect
"Shift+Ctrl+Left" = LeftJumpSelect
"Shift+Ctrl+Right" = RightJumpSelect
"Shift+Ctrl+Up" = UpJumpSelect
"Shift+Ctrl+Down" = DownJumpSelect
Enter = Enter
Backspace = Backspace
"Shift+Backspace" = DelVerb
Del = Del
"Ctrl+C" = Copy
"Ctrl+X" = Cut
"Ctrl+V+KeyReleased" = Paste
"Ctrl+Space" = AutoComplete
"Ctrl+Z" = Undo
"Ctrl+Shift+Z" = Redo
"Ctrl+A" = SelectAll
"Ctrl+B" = SendBreak
"Ctrl+E" = "InsertPromptSelectedText e "
"Ctrl+G" = "InsertPrompt goto "
"Ctrl+F" = "InsertPromptSelectedText find "
"Ctrl+H" = "InsertPromptSelectedText replace "
"Ctrl+U" = UpdateView
"Ctrl+O" = OpenTab
"Ctrl+S" = SaveTab
"Ctrl+N" = NewTab
"Ctrl+Q" = CloseTab
"Ctrl+W" = MoveTabRight
"Ctrl+Shift+W" = MoveTabLeft
"Ctrl+M" = Declarations
F3 = NextEditLocation
F1 = ShowHelp
F2 = "Nimsuggest dus"
Esc = SwitchEditorPrompt
"Shift+Esc" = SwitchEditorConsole
"Ctrl+Tab" = NextBuffer
"Ctrl+Shift+Tab" = PrevBuffer
Tab = Indent
"Shift+Tab" = Dedent
F5 = "NimScript pressedF5"
F6 = "NimScript pressedF6"
F7 = "NimScript pressedF7"
F8 = "NimScript pressedF8"
F9 = "NimScript pressedF9"
F10 = "NimScript pressedF10"
F11 = "NimScript pressedF11"
F12 = "NimScript pressedF12"