-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme.txt
More file actions
42 lines (35 loc) · 1.67 KB
/
readme.txt
File metadata and controls
42 lines (35 loc) · 1.67 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
CodeRoom v0.1.5 Development
Keyboard commands:
Ctrl + S: Save
Ctrl + W: Save As
Ctrl + O: Open
Ctrl + N: New Document
Ctrl + Q: Quit
Escape: Quit
Ctrl + H: Choose Syntax Highlighting
Ctrl + Return: Create new line after the current (same as End + Return)
QuickInsert keys:
F5 to F12: QuickInsert, as defined in syntax file
Ctrl + F5 to F12: Define new QuickInsert on desired key
QuickInsert syntax:
First symbol: Defined separator, sep
\n: Newline
\t: Tab
\s: Space (actual spaces are used as delimiters between separators
sep: Cursor location
sepsep: Will be replaced by marked text, when command is pressed
sepsepsep: Will be replaced by the current line, when command is pressed
sepsepsepsep: Will be replaced by the current word, when command is pressed
\\n: Plain text \n
\\t: Plain text \t
\\s: Plain text \s
***************************************************************************
Syntax highlighting:
***************************************************************************
Use \s as space character
Do not use \n in linespans, use restofline instead
Freewords cannot contain symbols
Priority:
multibehindregexp > multiregexp > multilinespan > singlebehindregexp > singleregexp > restofline > singlelinespan > freewords > inlinewords
The lower a span appear in the document, the higher the priority. The above still apply though.
Use // to comment. Comment must not contain COLON. Comments must have a free line or another comment above it.