diff options
author | Peter | 2019-07-17 12:49:33 +0100 |
---|---|---|
committer | Peter | 2019-07-17 12:49:33 +0100 |
commit | 04eab9ccf19f15aad05995749a7d0c4a294934ac (patch) | |
tree | cee6af20f00f48a99c589b17f27ade9678e38077 | |
parent | 10aa1c53ec6c47ad748fde1f86876810f09a4710 (diff) | |
download | ahka-04eab9ccf19f15aad05995749a7d0c4a294934ac.tar.gz ahka-04eab9ccf19f15aad05995749a7d0c4a294934ac.tar.bz2 ahka-04eab9ccf19f15aad05995749a7d0c4a294934ac.zip |
Windows 10 cmd updates
Integrated feature now, code not required
-rw-r--r-- | ahk-assistant.ahk | 16 |
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
|