How to convert Ctrl+(any letter) to «Ctrl+(any letter)»?
I need like this:
Ctrl+T
Ctrl+D
etc.
Convert to:
«Ctrl+T»
«Ctrl+D»
etc.
I tried replacing this (Ctrl\+.) with (Ctrl\+[a-zA-Z]), but the result is Ctrl+[a-zA-Z].
How to convert Ctrl+(any letter) to «Ctrl+(any letter)»?
I need like this:
Ctrl+T
Ctrl+D
etc.
Convert to:
«Ctrl+T»
«Ctrl+D»
etc.
I tried replacing this (Ctrl\+.) with (Ctrl\+[a-zA-Z]), but the result is Ctrl+[a-zA-Z].
Find what:
(Ctrl\+[a-zA-Z])
Replace with:
«\1»
Make sure Search mode 'Regular expression' is selected.
You can use the full match $0 in the replacement.
Find what:
Ctrl\+[a-zA-Z]
Replace with
«$0»
Note that if you don't want any partial word matches you can use word boundaries \b
\bCtrl\+[a-zA-Z]\b