summaryrefslogtreecommitdiff
path: root/alot/completion/tags.py
blob: 38b0a0cd7c81349fa610c3fd3881beefe24fd9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 .multipleselection import MultipleSelectionCompleter
from .tag import TagCompleter


class TagsCompleter(MultipleSelectionCompleter):
    """Complete a comma separated list of tagstrings."""

    def __init__(self, dbman):
        """
        :param dbman: used to look up available tagstrings
        :type dbman: :class:`~alot.db.DBManager`
        """
        self._completer = TagCompleter(dbman)
        self._separator = ','

        super().__init__()