aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py
index a6f7b8d..ac1087d 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -2491,7 +2491,10 @@ class SlackThreadChannel(SlackChannelCommon):
if self.label_short_drop_prefix:
return name
else:
- return " ${}".format(name)
+ indent_expr = w.config_string(w.config_get("buflist.format.indent"))
+ # Only indent with space if slack_type isn't mentioned in the indent option
+ indent = "" if "slack_type" in indent_expr else " "
+ return "{}${}".format(indent, name)
elif style == "long_default":
if self.label_full_drop_prefix:
return name