The default keys to enter bold characters is F6 F5
. I am finding it very tedius to constantly hitting these two keys. I am considering mapping this to something much more convenient like bb
when in math mode.
Inside the file prefix-kbd.scm
, I found the following:
(kbd-map
(:mode in-math?)
("math:bold:up" "" "Insert an upright bold character")
)
I tried to add map this to bb
, but it didn’t work.
(kbd-map
(:mode in-math?)
("b b" ("math:bold:up" "" "Insert an upright bold character"))
)
It is possible to use (make 'math-bf)
but this puts me in the mode where whatever I type is in bold, instead of just inserting a bold character, which is what I am looking for.
Does anyone know how I can map the functionality provided by F6 F5
to bb
?