llama-stack-mirror/docs/_static/js/keyboard_shortcuts.js
Francisco Javier Arceo ae3cbde8a4 docs: Add documentation on how to contribute a Vector DB provider and
updated Test documentation and added a shortcut

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
2025-08-11 10:45:14 -04:00

14 lines
486 B
JavaScript

document.addEventListener('keydown', function(event) {
// command+K or ctrl+K
if ((event.metaKey || event.ctrlKey) && event.key === 'k') {
event.preventDefault();
document.querySelector('.search-input, .search-field, input[name="q"]').focus();
}
// forward slash
if (event.key === '/' &&
!event.target.matches('input, textarea, select')) {
event.preventDefault();
document.querySelector('.search-input, .search-field, input[name="q"]').focus();
}
});