Right-Ctrl and Right-Alt Key Press

Hey there,

I've been using TextBlaze for a long time in my professional account and recently started using it personally too.

I have a quick question. I need to have a key press on my snippet, but it needs to be right-ctrl + right-alt. If I use the left ones, it doesn't do what I need it to do.

Is there a way to specify this in TextBlaze?

Right now, all I have is {key: ctrl-alt-3}.

Is there a variation of this, such as {key: right-ctrl-right-alt-3} that would work?

Any help would be greatly appreciated. :blush:

Follow-up question in case that is not possible.

Is there a way to, on Google Docs, paste the information in the snippet and set a specific heading to it (Heading 1 or Heading 3, for example)?

Right now, my snippet takes text from ChatGPT into Google Docs, but I need the first line to be in a heading format. I've tried a few things but couldn't find a solution to accomplish this.

Right now, all I have is {key: ctrl-alt-3}.

Is there a variation of this, such as {key: right-ctrl-right-alt-3} that would work?

What are you trying to do here? Are you trying to make a text heading?

For you second question:

Is there a way to, on Google Docs, paste the information in the snippet and set a specific heading to it (Heading 1 or Heading 3, for example)?

Can this help to make a the first line heading.
I used split(str, "\n") to make list of lines.
Then used first item to insert and then used {key} command to make the line heading.
And then sliced them remaining list using slice() and joined the list using join()

{text="Lorem ispm
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Pellentesque finibus urna vel diam aliquam dictum.
Sed at turpis et dui gravida viverra vitae sed ante.
Nam turpis massa, mattis sed turpis vel, tincidunt convallis purus."}{lines=split(text, "\n")}
{=lines[1]}{key: cmd-alt-1}
{=join(slice(lines, 2, count(lines)), "\n")}

Hi Vinod,

Yes, I am trying to make the heading, but as I mentioned, the default Ctrl+Alt+1 doesn't work on my keyboard. It only works if it's right-Ctrl+right-Alt+1.

I tested your snippet and it added all of the information correctly but did not set the heading.

Hi Daniel,

Currently, Text Blaze cannot press a Control key on a specific position, like right-ctrl.

Can you clarify what is your current setup of the key bindings? Why does left control not work for your task? If you have Microsoft PowerToys and can use Text Blaze Desktop, can you try to remap Text Blaze Desktop's control key output to the right control key?