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
LCtrl & Tab::AltTab | |
LAlt & Tab::AltTab | |
!Tab::Send {LCtrl down}{Tab}{LCtrl up} | |
!+Tab::Send {Shift down}{LCtrl down}{Tab}{LCtrl up}{Shift up} |
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
#!/usr/bin/env python | |
import subprocess | |
import sys | |
binaryPath = "meld" | |
left = str(sys.argv[1]) | |
side = str(sys.argv[2]) | |
right = left.replace('base', side) |
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
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
[user] | |
name = Symbolk | |
email = [email protected] | |
[alias] | |
c = clone |
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
#!/usr/bin/env python | |
# import subprocess | |
import os | |
import sys | |
# C:/PROGRA~1/Meld/Meld.exe | |
binaryPath = "meld" | |
base = str(sys.argv[1]) |