diff --git a/src/main/frontend/modules/shortcut/data_helper.cljs b/src/main/frontend/modules/shortcut/data_helper.cljs index b0d4b76585..3a739b4efc 100644 --- a/src/main/frontend/modules/shortcut/data_helper.cljs +++ b/src/main/frontend/modules/shortcut/data_helper.cljs @@ -93,11 +93,12 @@ (defn decorate-binding [binding] (-> (if (string? binding) binding (str/join "+" binding)) - (str/replace "mod" (if util/mac? "cmd" "ctrl")) + (str/replace "mod" (if util/mac? "⌘" "ctrl")) (str/replace "alt" (if util/mac? "opt" "alt")) (str/replace "shift+/" "?") (str/replace "left" "←") (str/replace "right" "→") + (str/replace "shift" "⇧") (str/replace "open-square-bracket" "[") (str/replace "close-square-bracket" "]") (str/lower-case)))