2014-06-21 22:41:04 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
2014-06-19 09:04:37 +02:00
|
|
|
|
2017-05-09 21:37:03 +02:00
|
|
|
# Copyright 2014-2017 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2014-02-06 14:01:23 +01:00
|
|
|
#
|
|
|
|
# This file is part of qutebrowser.
|
|
|
|
#
|
|
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# qutebrowser is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-29 15:30:19 +01:00
|
|
|
|
2016-09-16 21:41:54 +02:00
|
|
|
"""Functions that return config-related completion models."""
|
2014-04-17 17:44:27 +02:00
|
|
|
|
2017-09-04 19:55:30 +02:00
|
|
|
from qutebrowser.config import configdata, configexc
|
2017-08-19 23:37:57 +02:00
|
|
|
from qutebrowser.completion.models import completionmodel, listcategory, util
|
2017-09-27 11:10:25 +02:00
|
|
|
from qutebrowser.commands import runners, cmdexc
|
2014-01-27 21:42:00 +01:00
|
|
|
|
|
|
|
|
2017-09-04 19:55:30 +02:00
|
|
|
def option(*, info):
|
2017-08-08 16:55:03 +02:00
|
|
|
"""A CompletionModel filled with settings and their descriptions."""
|
2017-08-12 21:07:17 +02:00
|
|
|
model = completionmodel.CompletionModel(column_widths=(20, 70, 10))
|
2017-09-07 14:56:11 +02:00
|
|
|
options = ((opt.name, opt.description, info.config.get_str(opt.name))
|
|
|
|
for opt in configdata.DATA.values())
|
2017-08-21 03:18:47 +02:00
|
|
|
model.add_category(listcategory.ListCategory("Options", sorted(options)))
|
2016-09-16 21:41:54 +02:00
|
|
|
return model
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-02-19 10:58:32 +01:00
|
|
|
|
2017-10-05 18:40:14 +02:00
|
|
|
def customized_option(*, info):
|
|
|
|
"""A CompletionModel filled with set settings and their descriptions."""
|
|
|
|
model = completionmodel.CompletionModel(column_widths=(20, 70, 10))
|
|
|
|
options = ((opt.name, opt.description, info.config.get_str(opt.name))
|
|
|
|
for opt, _value in info.config)
|
|
|
|
model.add_category(listcategory.ListCategory("Customized options",
|
|
|
|
sorted(options)))
|
|
|
|
return model
|
|
|
|
|
|
|
|
|
2017-09-04 19:55:30 +02:00
|
|
|
def value(optname, *_values, info):
|
2014-10-18 19:50:10 +02:00
|
|
|
"""A CompletionModel filled with setting values.
|
|
|
|
|
2016-09-16 21:41:54 +02:00
|
|
|
Args:
|
|
|
|
optname: The name of the config option this model shows.
|
2017-08-19 23:37:57 +02:00
|
|
|
_values: The values already provided on the command line.
|
2017-09-04 19:55:30 +02:00
|
|
|
info: A CompletionInfo instance.
|
2014-10-18 19:50:10 +02:00
|
|
|
"""
|
2017-08-08 16:55:03 +02:00
|
|
|
model = completionmodel.CompletionModel(column_widths=(30, 70, 0))
|
2017-02-23 04:25:11 +01:00
|
|
|
|
2016-09-16 21:41:54 +02:00
|
|
|
try:
|
2017-10-01 20:14:49 +02:00
|
|
|
current = info.config.get_str(optname)
|
2017-08-08 16:55:03 +02:00
|
|
|
except configexc.NoOptionError:
|
2016-09-16 21:41:54 +02:00
|
|
|
return None
|
2017-02-23 04:25:11 +01:00
|
|
|
|
2017-09-07 14:56:11 +02:00
|
|
|
opt = info.config.get_opt(optname)
|
|
|
|
default = opt.typ.to_str(opt.default)
|
2017-03-03 14:31:28 +01:00
|
|
|
cur_cat = listcategory.ListCategory("Current/Default",
|
|
|
|
[(current, "Current value"), (default, "Default value")])
|
|
|
|
model.add_category(cur_cat)
|
2017-08-08 16:55:03 +02:00
|
|
|
|
|
|
|
vals = opt.typ.complete()
|
2016-09-16 21:41:54 +02:00
|
|
|
if vals is not None:
|
2017-08-05 23:03:40 +02:00
|
|
|
model.add_category(listcategory.ListCategory("Completions",
|
|
|
|
sorted(vals)))
|
2016-09-16 21:41:54 +02:00
|
|
|
return model
|
Move bind completion to configmodels.
When in miscmodels, the config module was unable to find the function.
It appears to be some sort of circular import issue:
```
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/app.py", line 44, in <module>
from qutebrowser.completion.models import miscmodels
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/miscmodels.py", line 24, in <module>
from qutebrowser.completion.models import completionmodel, listcategory, util
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/util.py", line 24, in <module>
from qutebrowser.config import config
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 223, in <module>
class ConfigCommands:
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 314, in ConfigCommands
@cmdutils.argument('command', completion=miscmodels.bind)
AttributeError: module 'qutebrowser.completion.models.miscmodels' has no attribute 'bind'
```
As configmodel imports util (and thereby config as well) it is unclear
to me why moving bind() to configmodel actually fixes this, but it does.
2017-08-19 23:37:04 +02:00
|
|
|
|
|
|
|
|
2017-09-04 19:55:30 +02:00
|
|
|
def bind(key, *, info):
|
Move bind completion to configmodels.
When in miscmodels, the config module was unable to find the function.
It appears to be some sort of circular import issue:
```
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/app.py", line 44, in <module>
from qutebrowser.completion.models import miscmodels
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/miscmodels.py", line 24, in <module>
from qutebrowser.completion.models import completionmodel, listcategory, util
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/util.py", line 24, in <module>
from qutebrowser.config import config
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 223, in <module>
class ConfigCommands:
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 314, in ConfigCommands
@cmdutils.argument('command', completion=miscmodels.bind)
AttributeError: module 'qutebrowser.completion.models.miscmodels' has no attribute 'bind'
```
As configmodel imports util (and thereby config as well) it is unclear
to me why moving bind() to configmodel actually fixes this, but it does.
2017-08-19 23:37:04 +02:00
|
|
|
"""A CompletionModel filled with all bindable commands and descriptions.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
key: the key being bound.
|
|
|
|
"""
|
|
|
|
model = completionmodel.CompletionModel(column_widths=(20, 60, 20))
|
2017-09-07 14:56:11 +02:00
|
|
|
cmd_text = info.keyconf.get_command(key, 'normal')
|
Move bind completion to configmodels.
When in miscmodels, the config module was unable to find the function.
It appears to be some sort of circular import issue:
```
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/app.py", line 44, in <module>
from qutebrowser.completion.models import miscmodels
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/miscmodels.py", line 24, in <module>
from qutebrowser.completion.models import completionmodel, listcategory, util
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/util.py", line 24, in <module>
from qutebrowser.config import config
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 223, in <module>
class ConfigCommands:
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 314, in ConfigCommands
@cmdutils.argument('command', completion=miscmodels.bind)
AttributeError: module 'qutebrowser.completion.models.miscmodels' has no attribute 'bind'
```
As configmodel imports util (and thereby config as well) it is unclear
to me why moving bind() to configmodel actually fixes this, but it does.
2017-08-19 23:37:04 +02:00
|
|
|
|
|
|
|
if cmd_text:
|
2017-09-09 18:39:04 +02:00
|
|
|
parser = runners.CommandParser()
|
2017-09-27 11:10:25 +02:00
|
|
|
try:
|
|
|
|
cmd = parser.parse(cmd_text).cmd
|
|
|
|
except cmdexc.NoSuchCommandError:
|
|
|
|
data = [(cmd_text, 'Invalid command!', key)]
|
|
|
|
else:
|
|
|
|
data = [(cmd_text, cmd.desc, key)]
|
Move bind completion to configmodels.
When in miscmodels, the config module was unable to find the function.
It appears to be some sort of circular import issue:
```
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/app.py", line 44, in <module>
from qutebrowser.completion.models import miscmodels
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/miscmodels.py", line 24, in <module>
from qutebrowser.completion.models import completionmodel, listcategory, util
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/util.py", line 24, in <module>
from qutebrowser.config import config
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 223, in <module>
class ConfigCommands:
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 314, in ConfigCommands
@cmdutils.argument('command', completion=miscmodels.bind)
AttributeError: module 'qutebrowser.completion.models.miscmodels' has no attribute 'bind'
```
As configmodel imports util (and thereby config as well) it is unclear
to me why moving bind() to configmodel actually fixes this, but it does.
2017-08-19 23:37:04 +02:00
|
|
|
model.add_category(listcategory.ListCategory("Current", data))
|
|
|
|
|
2017-09-04 21:00:35 +02:00
|
|
|
cmdlist = util.get_cmd_completions(info, include_hidden=True,
|
Move bind completion to configmodels.
When in miscmodels, the config module was unable to find the function.
It appears to be some sort of circular import issue:
```
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/app.py", line 44, in <module>
from qutebrowser.completion.models import miscmodels
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/miscmodels.py", line 24, in <module>
from qutebrowser.completion.models import completionmodel, listcategory, util
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/completion/models/util.py", line 24, in <module>
from qutebrowser.config import config
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 223, in <module>
class ConfigCommands:
File "/home/rcorre/projects/contrib/qutebrowser/qutebrowser/config/config.py", line 314, in ConfigCommands
@cmdutils.argument('command', completion=miscmodels.bind)
AttributeError: module 'qutebrowser.completion.models.miscmodels' has no attribute 'bind'
```
As configmodel imports util (and thereby config as well) it is unclear
to me why moving bind() to configmodel actually fixes this, but it does.
2017-08-19 23:37:04 +02:00
|
|
|
include_aliases=True)
|
|
|
|
model.add_category(listcategory.ListCategory("Commands", cmdlist))
|
|
|
|
return model
|