summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ahk-assistant.ahk16
1 files changed, 0 insertions, 16 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk
index d7ae738..a4192e1 100644
--- a/ahk-assistant.ahk
+++ b/ahk-assistant.ahk
@@ -191,8 +191,6 @@ Insert::appendClipboard()
#IfWinActive
#IfWinActive ahk_class ConsoleWindowClass ; command prompt
- +Insert:: ; unix style S-insert, overflow
- ^v::cmdPaste() ; win style C-v, paste function
^l::Send ^c{Enter}cls{Enter} ; clear screen as in linux
#IfWinActive
@@ -612,20 +610,6 @@ pasteClipboard() { ; manually paste clipboard, minus most formatting
Return
}
-cmdPaste() { ; pastes into cmd
- CoordMode, Mouse, Relative
- MouseMove, 100, 100
- If A_OSVersion in WIN_7
- {
- Send {RButton}p ; p for paste needed for Windows 7
- }
- Else
- {
- Send {RButton}
- }
- Return
- }
-
toggleFullscreen() { ;double click the window
CoordMode, Mouse, Relative
MouseMove, 250, 250