Skip to content

Commit

Permalink
Merge pull request #407 from rbreaves/hotfix
Browse files Browse the repository at this point in the history
- Added Open File Browser (Windows). Closes #405
  • Loading branch information
rbreaves authored Feb 26, 2021
2 parents 4f1adbc + d44247a commit cbfe1a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions linux/kinto.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,8 @@
K("Super-k"): [K("Shift-End"), K("Backspace")],
K("Super-d"): K("Delete"),

# K("M-RC-Space"): K(""), # Open Finder - Placeholder

# Wordwise
K("RC-Left"): K("Home"), # Beginning of Line
K("RC-Shift-Left"): K("Shift-Home"), # Select all to Beginning of Line
Expand Down
4 changes: 4 additions & 0 deletions windows/kinto.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,10 @@ GroupAdd, intellij, ahk_exe idea64.exe
; Region Screenshot
^+4::Send #+{S}

; Open File Browser
; !^space::Send #e ; Default
; #^space::Send #e ; CB/IBM

; wordwise support
^Up::Send ^{Home}
^+Up::Send ^+{Home}
Expand Down

0 comments on commit cbfe1a4

Please sign in to comment.