mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 13:05:20 -05:00
Added a docs page with tips for setting up VS Code's code completion to work in ZMK's source files. Info for other IDEs can be added here later as needed.
62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
module.exports = {
|
|
docs: {
|
|
"Getting Started": [
|
|
"intro",
|
|
"hardware",
|
|
"faq",
|
|
"user-setup",
|
|
"customization",
|
|
"troubleshooting",
|
|
],
|
|
Features: [
|
|
"features/keymaps",
|
|
"features/combos",
|
|
"features/displays",
|
|
"features/encoders",
|
|
"features/underglow",
|
|
],
|
|
Behaviors: [
|
|
"behaviors/key-press",
|
|
"behaviors/layers",
|
|
"behaviors/misc",
|
|
"behaviors/hold-tap",
|
|
"behaviors/mod-tap",
|
|
"behaviors/sticky-key",
|
|
"behaviors/sticky-layer",
|
|
"behaviors/reset",
|
|
"behaviors/bluetooth",
|
|
"behaviors/outputs",
|
|
"behaviors/lighting",
|
|
"behaviors/power",
|
|
],
|
|
Codes: [
|
|
"codes/index",
|
|
"codes/keyboard-keypad",
|
|
"codes/modifiers",
|
|
"codes/editing",
|
|
"codes/media",
|
|
"codes/applications",
|
|
"codes/input-assist",
|
|
"codes/power",
|
|
"codes/keymap-upgrader",
|
|
],
|
|
Development: [
|
|
"development/clean-room",
|
|
"development/documentation",
|
|
"development/setup",
|
|
"development/build-flash",
|
|
"development/boards-shields-keymaps",
|
|
"development/posix-board",
|
|
"development/tests",
|
|
"development/usb-logging",
|
|
"development/ide-integration",
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
collapsed: false,
|
|
items: ["development/new-shield"],
|
|
},
|
|
],
|
|
},
|
|
};
|