Plugin

NoF1

Disables F1 help bind.

Utility
index.ts
Download

Source

src/plugins/noF1/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "NoF1",
12 description: "Disables F1 help bind.",
13 tags: ["Utility"],
14 authors: [Devs.Cyn],
15 patches: [
16 {
17 find: ',"f1"],comboKeysBindGlobal:',
18 replacement: {
19 match: ',"f1"],comboKeysBindGlobal:',
20 replace: "],comboKeysBindGlobal:",
21 },
22 },
23 ],
24});
25