Agregar comillas (") alrededor del texto seleccionado:
F1::
ClipSaved := ClipboardAll ; save the entire clipboard to the variable ClipSaved
clipboard := "" ; empty the clipboard (start off empty to allow ClipWait to detect when the text has arrived)
Send, ^c ; copy the selected text
ClipWait, 1 ; wait for the clipboard to contain data
if (!ErrorLevel) ; if NOT ErrorLevel, clipwait found data on the clipboard
clipboard = "%clipboard%" ; add the quotation marks
Sleep, 300
Send, ^v
Sleep, 300
clipboard := ClipSaved ; restore original clipboard
return
Para encerrar el texto seleccionado entre [quote] y [/ quote] , use otra tecla de acceso rápido y el mismo procedimiento. Simplemente reemplace clipboard = "%clipboard%"
con clipboard = [quote]%clipboard%[/quote]
en el código anterior.
Para escribir o pegar texto entre [quote] y [/ quote] use esto:
F2:: SendInput, [quote][/quote]{Left 8}