Skip to content

Instantly share code, notes, and snippets.

View QuietNoise's full-sized avatar

Edgerunner QuietNoise

View GitHub Profile
@QuietNoise
QuietNoise / Excel-paste-without-formatting.ahk
Last active April 14, 2025 21:50
Paste into Excel without formatting
#SingleInstance Force
; Press Ctrl+q to paste clipboard into Excel without formatting
; Run this hotkey hijack only if Excel is active
#If WinActive("ahk_exe EXCEL.EXE") ; Check if active window process is run from excel.exe
^q:: ; Ctrl + q - this is the shortcur we are hijacking
Clipboard := Clipboard ; This line removes any present formatting in clipboard and changes it to plain text
Send ^v ; This line sends Ctrl+v to the active window
return