One beacon per line #285
-
Here's a problem I solved pretty easily with From this: (defvar td/custom-meow-states `((normal . ,(propertize
"N" 'face 'all-the-icons-yellow))
(motion . ,(propertize
"M" 'face 'all-the-icons-blue))
(keypad . ,(propertize
"K" 'face 'all-the-icons-cyan))
(insert . ,(propertize
"I" 'face 'all-the-icons-maroon))
(beacon . ,(propertize
"B" 'face 'all-the-icons-red)))) To this: (defvar td/custom-meow-states `((normal . ,(tdm/meow-face
"<N>" 'all-the-icons-yellow))
(motion . ,(tdm/meow-face
"<M>" 'all-the-icons-blue))
(keypad . ,(tdm/meow-face
"<K>" 'all-the-icons-cyan))
(insert . ,(tdm/meow-face
"<I>" 'all-the-icons-maroon))
(beacon . ,(tdm/meow-face
"<B>" 'all-the-icons-red)))) Here's how I was able to do it: Now, I was fortunate here because I could easily pick 1 of 2 unique characters on one line. How would you solve this if a single, unique character on common lines is not available? |
Beta Was this translation helpful? Give feedback.
Answered by
DogLooksGood
Jul 16, 2022
Replies: 1 comment 2 replies
-
In BEACON state, press ssr-2022-07-17_07.02.43.mp4 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
trev-dev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In BEACON state, press
line
two times, you got beacons for each two lines.Then start kmacro with
F3
, edit, then finish recording withF4
.ssr-2022-07-17_07.02.43.mp4