diff options
| author | Pratyush Desai | 2021-08-20 17:14:44 +0530 |
|---|---|---|
| committer | Pratyush Desai | 2021-08-20 17:14:44 +0530 |
| commit | 5039d0b51be13b2d2e8ed1c2e797eb4f6d281114 (patch) | |
| tree | 845645c22d4a00b3e7d4a33c3fd71abbf3b5320a /config.py | |
| parent | 940ea7f4c924536d913e1a1c4ec6bacf51bcdc2f (diff) | |
| download | snoparser-5039d0b51be13b2d2e8ed1c2e797eb4f6d281114.tar.gz snoparser-5039d0b51be13b2d2e8ed1c2e797eb4f6d281114.tar.bz2 snoparser-5039d0b51be13b2d2e8ed1c2e797eb4f6d281114.zip | |
switch to rst, add setvhost, use config vars
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -52,5 +52,13 @@ SnoParser = conf.registerPlugin('SnoParser') # conf.registerGlobalValue(SnoParser, 'someConfigVariableName', # registry.Boolean(False, _("""Help for someConfigVariableName."""))) +conf.registerGlobalValue(SnoParser, 'targetChannel', + registry.String(None, ("""Sends reformatted snolines to the <channel>"""))) + +conf.registerGlobalValue(SnoParser, 'AutoVhost', + registry.String('libcasa/user/', ("""Configure the vhost eg. libcasa/user/$account"""))) + +conf.registerGlobalValue(SnoParser, 'preventHighlight', + registry.Boolean(True, ("""Toggles in channel highlights with ZWSP"""))) # vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: |
