commit 16d72828b066879a2a337e0bfa2e468eb4068327
parent 1d23fda40ab94cf343ae856163ae0bd8ed5e59a5
Author: Peter <peter@minskio.co.uk>
Date: Tue, 23 Jul 2019 13:31:37 +0100
Simplify excel formula bar function
Diffstat:
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk
@@ -176,7 +176,7 @@ Insert::appendClipboard()
!F2:: ; overflow
^F2::Send !ohr ; rename sheet
F3::Send +{F4} ; f3 searches for the same string again
- F6::excelFormulaBar()
+ F6::Send {F2} ; shortcut to formula bar
F11::Send !vu ; fullscreen
^Tab::Send ^{PgDn} ; next sheet
^+Tab::Send ^{PgUp} ; prev sheet
@@ -631,14 +631,6 @@ explorerHidden() { ; toggle show/hide hidden folders, stolen from http://www.aut
Return
}
-excelFormulaBar() { ;jumps to formula bar
- CoordMode, Mouse, Relative
- MouseMove, 250, 65
- ; Send {LButton}{End}{ShiftDown}{Home}{ShiftUp}
- Send {LButton}{End}
- Return
- }
-
borderlessFullscreen() { ;borderless fullscreen script from PCGW (http://pcgamingwiki.com/wiki/Glossary:Borderless_fullscreen_windowed#Borderless_scripts)
WinGet, WindowID, ID, A
WinSet, Style, -0xC40000, ahk_id %WindowID%