Menüyü değiştir
Toggle preferences menu
Kişisel menüyü aç / kapat
Oturum açık değil
Your IP address will be publicly visible if you make any edits.

CTRL + SHIFT + K kombinasyonuyla seçili metni [[ ve ]] ile çevreleme:

^+k::SurroundSelectionWith("[[", "]]")

SurroundSelectionWith(pre := "", pos := "") {
    SendClipboard(pre GetClipboard() pos)
}

GetClipboard() {
    old := ClipboardAll
    Clipboard := ""
    Send ^c
    ClipWait, 1
    if(!ErrorLevel) {
        text := Clipboard
    }
    Clipboard := old
    return text
}

SendClipboard(text) {
    old := ClipboardAll
    Clipboard := text
    Send ^v
    Sleep 400
    Clipboard := old
}