commit 04eab9ccf19f15aad05995749a7d0c4a294934ac
parent 10aa1c53ec6c47ad748fde1f86876810f09a4710
Author: Peter <peter@minskio.co.uk>
Date: Wed, 17 Jul 2019 12:49:33 +0100
Windows 10 cmd updates
Integrated feature now, code not required
Diffstat:
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git 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