summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter2019-07-23 13:31:37 +0100
committerPeter2019-07-23 13:31:37 +0100
commit16d72828b066879a2a337e0bfa2e468eb4068327 (patch)
tree00f50e68488fe16d5c0911f0bce236cb2e1e0e9e
parent1d23fda40ab94cf343ae856163ae0bd8ed5e59a5 (diff)
downloadahka-16d72828b066879a2a337e0bfa2e468eb4068327.tar.gz
ahka-16d72828b066879a2a337e0bfa2e468eb4068327.tar.bz2
ahka-16d72828b066879a2a337e0bfa2e468eb4068327.zip
Simplify excel formula bar function
-rw-r--r--ahk-assistant.ahk10
1 files changed, 1 insertions, 9 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk
index ee66840..638ea33 100644
--- 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%