summaryrefslogtreecommitdiff
path: root/alot/completion/namedquery.py
blob: e166541bf26216e14ffd78d2d758921f920f5720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (C) 2011-2019  Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file

from .stringlist import StringlistCompleter


class NamedQueryCompleter(StringlistCompleter):
    """Complete the name of a named query string."""

    def __init__(self, dbman):
        """
        :param dbman: used to look up named query strings in the DB
        :type dbman: :class:`~alot.db.DBManager`
        """
        # mapping of alias to query string (dict str -> str)
        nqueries = dbman.get_named_queries()
        super().__init__(list(nqueries))