Skip to content

Commit

Permalink
added modifier block (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson authored and pokey committed Jul 24, 2021
1 parent 43b644d commit 4373fa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modifiers/selection_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def json_repr(self):

TOKEN = SelectionType("token", "tokens", "token", 0)
LINE = SelectionType("line", "lines", "line", 1)
BLOCK = SelectionType("block", "blocks", "block", 2)
BLOCK = SelectionType("block", "blocks", "paragraph", 2)
FILE = SelectionType("file", "files", "document", 3)

SELECTION_TYPES = [
TOKEN,
LINE,
# BLOCK,
BLOCK,
FILE
]

Expand Down

0 comments on commit 4373fa5

Please sign in to comment.