Skip to content

Commit

Permalink
Disable Microshitsoft Teams Fancy Paste for text.
Browse files Browse the repository at this point in the history
WHY WOULD YOU MAKE THAT THE DEFAULT? WTF?
  • Loading branch information
TheBestPessimist committed Apr 20, 2021
1 parent d3d07a4 commit 2c2c50e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion WinTitles.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
static TeamViewerSponsoredSession := "Sponsored session ahk_exe TeamViewer.exe"
static TeamViewer := "TeamViewer ahk_exe TeamViewer.exe"
static ACDSee := "ahk_exe ACDSeeProfessional2018.exe"

static MsTeams := "ahk_exe Teams.exe"



Expand Down
18 changes: 18 additions & 0 deletions app_handling.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,24 @@ CapsLock & v::



;-----------------------
; Microshitsoft Teams is fucking retarded
;
; Replace "Fancy Paste" with Plain text Copy-Pasta
#If WinActive(WinTitles.MsTeams)
^V::
disableFancyPasteOnText(){
if DllCall("IsClipboardFormatAvailable", "uint", 1)
{
Send ^+v
}
else
{
Send ^v
}
}
#If


;-------------------------------------------------
; Fix Vivaldi Gestures
Expand Down

0 comments on commit 2c2c50e

Please sign in to comment.