+ {grouped.length === 0 ? (
+
+ No shortcut matches “{query}”.
+
+ ) : (
+ grouped.map(group => (
+
+
+ {CATEGORY_LABELS[group.category]}
+
+ {group.rows.map(row => (
+
+
+ {row.title}
+ {CONTEXT_LABELS[row.context] ? (
+
+ {CONTEXT_LABELS[row.context]}
+
+ ) : null}
+ {row.customized ? (
+ customized
+ ) : null}
+
+
+ {row.bindings.map(binding => (
+
+ {displayKeybinding(binding)}
+
+ ))}
+
+
+ ))}
+
+ ))
+ )}
+
+