-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.cbc
103 lines (100 loc) · 2.31 KB
/
user.cbc
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
def commands
//[of]:Test
def Test
disabled=true
caption=Run Test
hot-key=CTRL+SHIFT+ALT+T
script=user
function=test
end
//[cf]
//[of]:Navigate Next Section
def NavigateNextSection
caption=Navigate to Next Section
hot-key=ALT+DOWN
script=user
function=action_navigatenextsection
end
//[cf]
//[of]:Navigate Prev Section
def NavigatePrevSection
caption=Navigate to Previous Section
hot-key=ALT+UP
script=user
function=action_navigateprevsection
end
//[cf]
//[of]:Navigate Next Paragraph
def NavigateNextParagraph
caption=Navigate To Next Paragraph
hot-key=CTRL+ALT+DOWN
script=user
function=action_navigatenextparagraph
end
//[cf]
//[of]:Navigate Prev Paragraph
def NavigatePrevParagraph
caption=Navigate To Previous Paragraph
hot-key=CTRL+ALT+UP
script=user
function=action_navigateprevparagraph
end
//[cf]
//[of]:Fold
def Fold
caption=Fold Paragraph
hot-key=CTRL+ALT+LEFT
script=user
function=action_fold
end
//[cf]
//[of]:Unfold
def Unfold
caption=Unfold Paragraph
hot-key=CTRL+ALT+RIGHT
script=user
function=action_unfold
end
//[cf]
//[of]:Move Selection Up
def MoveUp
caption=Move Line Or Selection Up
hot-key=CTRL+UP
script=user
function=action_moveup
end
//[cf]
//[of]:Move Selection Down
def MoveDown
caption=Move Line Or Selection Down
hot-key=CTRL+DOWN
script=user
function=action_movedown
end
//[cf]
//[of]:Outcomment Selection
def OutcommentSelection
caption=Outcomment Selection
hot-key=ALT+X
script=user
function=action_outcomment
end
//[cf]
//[of]:Unoutcomment Selection
def UnoutcommentSelection
caption=Unoutcomment Selection
hot-key=SHIFT+ALT+X
script=user
function=action_unoutcomment
end
//[cf]
//[of]:Go To Definition
def GoToDefinition
caption=Go To Definition
hot-key=F1
script=user
function=action_gotodefinition
end
//[cf]
end
//[l]:user.cbc.bak:user.cbc.bak