diff options
Diffstat (limited to 'src/plugins/unindent.ts')
-rw-r--r-- | src/plugins/unindent.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/unindent.ts b/src/plugins/unindent.ts index 3cb34f3..d97de11 100644 --- a/src/plugins/unindent.ts +++ b/src/plugins/unindent.ts @@ -1,10 +1,11 @@ import definePlugin from "../utils/types"; import { addPreSendListener, addPreEditListener, MessageObject, removePreSendListener, removePreEditListener } from '../api/MessageEvents'; +import { Devs } from '../utils/constants'; export default definePlugin({ name: "Unindent", description: "Trims leading indentation from codeblocks", - author: "Vendicated", + authors: [Devs.Ven], patches: [ { find: "inQuote:", |