-
-
Save og-shawn-crigger/3654834 to your computer and use it in GitHub Desktop.
Sublime Text ubuntu xdebug url handler
This file contains hidden or 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
#~/.local/share/applications/mimeapps.list | |
[Added Associations] | |
#... | |
x-scheme-handler/subl=subl-urlhandler.desktop |
This file contains hidden or 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/share/applications/subl-urlhandler.desktop | |
[Desktop Entry] | |
Version=1.0 | |
Name=Sublime Text 2 | |
Name[en_PH]=Sublime Text 2 | |
Exec=xdebug-urlhandler %u | |
Icon=/opt/subl/Icon/48x48/sublime_text.png | |
Terminal=false | |
Type=Application | |
Categories=Development; | |
StartupNotify=true | |
MimeType=x-scheme-handler/subl; |
This file contains hidden or 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
#!/bin/bash | |
#/usr/bin/xdebug-urlhandler | |
url=$1 | |
file=${url#subl*//} | |
path=`expr "$file" : '\(.*\)\?@'` | |
line=${file#*@} | |
subl $path:$line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment