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 python3 | |
# Place in /usr/local/bin or some other path in $PATH | |
# Description: see https://hans.coffee/blog/subl-on-wsl/ | |
import subprocess | |
import sys | |
# The path to the Sublime Text Windows executable in the Linxu file-system. | |
SUBL = "/mnt/c/Program Files/Sublime Text/subl.exe" |