blob: 5eb9ae73dad4a023aab330753a22bfabf56ebc32 (
plain)
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
|
# author
#
# Hans Hagen - PRAGMA ADE - www.pragma-ade.com
#
# environment variable
#
# CTXSPELLPATH=t:/spell
#
# auto language detection
#
# % version =1.0 language=uk
# <?xml version='1.0' language='uk' ?>
ext.lua.auto.reload=1
ext.lua.startup.script=$(SciteDefaultHome)/scite-ctx.lua
#~ extension.$(file.patterns.context)=scite-ctx.lua
#~ extension.$(file.patterns.example)=scite-ctx.lua
#~ ext.lua.reset=1
#~ ext.lua.auto.reload=1
#~ ext.lua.startup.script=t:/lua/scite-ctx.lua
ctx.menulist.default=\
wrap=wrap_text|\
unwrap=unwrap_text|\
sort=sort_text|\
check=check_text|\
reset=reset_text
ctx.menulist.context=\
wrap=wrap_text|\
unwrap=unwrap_text|\
sort=sort_text|\
document=document_text|\
quote=quote_text|\
compound=compound_text|\
check=check_text|\
reset=reset_text
ctx.menulist.example=\
wrap=wrap_text|\
unwrap=unwrap_text|\
sort=sort_text|\
document=document_text|\
quote=quote_text|\
compound=compound_text|\
check=check_text|\
reset=reset_text
ctx.wraptext.length=65
ctx.spellcheck.language=auto
ctx.spellcheck.wordsize=3
ctx.spellcheck.wordpath=ENV(CTXSPELLPATH)
ctx.spellcheck.wordfile.all=spell-uk.txt,spell-nl.txt
ctx.spellcheck.wordfile.uk=spell-uk.txt
ctx.spellcheck.wordfile.nl=spell-nl.txt
ctx.spellcheck.wordsize.uk=3
ctx.spellcheck.wordsize.nl=3
ctx.helpinfo=\
Shift + F11 pop up menu with ctx options|\
|\
Ctrl + B check spelling|\
Ctrl + M wrap text (auto indent)|\
Ctrl + R reset spelling results
command.name.21.$(file.patterns.context)=CTX Action List
command.subsystem.21.$(file.patterns.context)=3
command.21.$(file.patterns.context)=show_menu $(ctx.menulist.context)
command.groupundo.21.$(file.patterns.context)=yes
command.save.before.21.$(file.patterns.context)=2
command.shortcut.21.$(file.patterns.context)=Shift+F11
command.name.21.$(file.patterns.example)=CTX Action List
command.subsystem.21.$(file.patterns.example)=3
command.21.$(file.patterns.example)=show_menu $(ctx.menulist.example)
command.groupundo.21.$(file.patterns.example)=yes
command.save.before.21.$(file.patterns.example)=2
command.shortcut.21.$(file.patterns.example)=Shift+F11
#~ command.name.21.*=CTX Action List
#~ command.subsystem.21.*=3
#~ command.21.*=show_menu $(ctx.menulist.default)
#~ command.groupundo.21.*=yes
#~ command.save.before.21.*=2
#~ command.shortcut.21.*=Shift+F11
command.name.22.*=CTX Check Text
command.subsystem.22.*=3
command.22.*=check_text
command.groupundo.22.*=yes
command.save.before.22.*=2
command.shortcut.22.*=Ctrl+B
command.name.23.*=CTX Wrap Text
command.subsystem.23.*=3
command.23.*=wrap_text
command.groupundo.23.*=yes
command.save.before.23.*=2
command.shortcut.23.*=Ctrl+M
command.name.24.*=CTX Reset Text
command.subsystem.24.*=3
command.24.*=reset_text
command.groupundo.24.*=yes
command.save.before.24.*=2
command.shortcut.24.*=Ctrl+R
|