-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from tomhea/dev
Refactor stl, hex.pointers, more improvements
- Loading branch information
Showing
146 changed files
with
5,078 additions
and
3,169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
; Double-click the script (with AutoHotKey v1 installed) to run now. Copy e script to "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup" to still take effect after reboot. | ||
|
||
; The script makes a Ctrl+Shift+Click Pycharm shortcut for flip-jump files (Find macro declaration), that resembles the Ctrl+Click shortcut for python (Find function declaration). | ||
|
||
; Script summery: Replace Ctrl+Shift+Click with [ Click -> Copy the pointed word -> Ctrl+Shift+F (search in project) -> (search) "def " + copied word ]. | ||
|
||
|
||
^+Lbutton:: | ||
{ | ||
old_clipboard := clipboard | ||
|
||
; Click | ||
Send {Lbutton} | ||
|
||
; Mark the pointed word | ||
Send ^{Left} | ||
Send ^+{Right} | ||
|
||
; Copy the pointed word | ||
Send ^c | ||
|
||
; Unmark word | ||
Send {Right} | ||
|
||
; Open the "Find in files" window (shortcut in Pycharm) | ||
Send ^+f | ||
Sleep 100 | ||
|
||
; Search for "def COPIED_WORD" | ||
Send {Home} | ||
Send +{End} | ||
Send def{Space} | ||
Send ^v | ||
Send {Space} | ||
|
||
clipboard := old_clipboard | ||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.