Skip to content

Commit d9a7f30

Browse files
committed
Merge branch 'develop' into replace-live-server
# Conflicts: # package-lock.json
2 parents 9c2d29f + cf61192 commit d9a7f30

File tree

10 files changed

+3417
-13864
lines changed

10 files changed

+3417
-13864
lines changed

docs/configuration.md

+48
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,54 @@ window.$docsify = {
288288
};
289289
```
290290

291+
## keyBindings
292+
293+
- Type: `Boolean|Object`
294+
- Default: `Object`
295+
- <kbd>\\</kbd> Toggle the sidebar menu
296+
- <kbd>/</kbd> Focus on [search](plugins#full-text-search) field. Also supports <kbd>alt</kbd>&nbsp;/&nbsp;<kbd>ctrl</kbd>&nbsp;+&nbsp;<kbd>k</kbd>.
297+
298+
Binds key combination(s) to a custom callback function.
299+
300+
Key `bindings` are defined as case insensitive string values separated by `+`. Modifier key values include `alt`, `ctrl`, `meta`, and `shift`. Non-modifier key values should match the keyboard event's [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) or [code](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code) value.
301+
302+
The `callback` function receive a [keydown event](https://developer.mozilla.org/en-US/docs/Web/API/Element/keydown_event) as an argument.
303+
304+
!> Let site visitors know your custom key bindings are available! If a binding is associated with a DOM element, consider inserting a `<kbd>` element as a visual cue (e.g., <kbd>alt</kbd> + <kbd>a</kbd>) or adding [title](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) and [aria-keyshortcuts](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-keyshortcuts) attributes for hover/focus hints.
305+
306+
```js
307+
window.$docsify = {
308+
keyBindings: {
309+
// Custom key binding
310+
myCustomBinding: {
311+
bindings: ['alt+a', 'shift+a'],
312+
callback(event) {
313+
alert('Hello, World!');
314+
},
315+
},
316+
},
317+
};
318+
```
319+
320+
Key bindings can be disabled entirely or individually by setting the binding configuration to `false`.
321+
322+
```js
323+
window.$docsify = {
324+
// Disable all key bindings
325+
keyBindings: false,
326+
};
327+
```
328+
329+
```js
330+
window.$docsify = {
331+
keyBindings: {
332+
// Disable individual key bindings
333+
focusSearch: false,
334+
toggleSidebar: false,
335+
},
336+
};
337+
```
338+
291339
## loadNavbar
292340

293341
- Type: `Boolean|String`

0 commit comments

Comments
 (0)