right click on it, Open URL in Browser
or make a key binding for it. IIRC there are plugins which auto underline links etc
Hi,
I am trying to set up sublime text 2 ( MacOS Yosemite) to run selected lines of a .srp file ( serpent codes). Serpent is A Real-Time Language for Music and Animation: https://www.cs.cmu.edu/~music/aura/serpent-info.htm .
The files are basically .srp files that are excuated using the command : serpent64 sample.srp. So the following sublime-build file works fine.
{
"cmd": ["/Users/csarami/bin/serpent64", "${file}"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.se…
Hello,
I wonder if it would be possible to add two variables to the build system. $selection_start and $selection_length.
$selection_start would be the (zero-based) index of the first selected character within $file.
$selection_length would be the count of selected characters from $selection_start within $file.
If there is no current selection (or when there are multiple), $selection_length would be zero, and $selection_start would be the current caret position (or zero).
I am a SQL develop…
A new package which allow you to execute or build part of your code.
github.com/erinata/BuildParts
This package has only one command “BuildParts: Build(or execute) the selected code”
When you run this command, it will build the code that you have selected using the build system selected by Sublime Text. If you have selected nothing, it will build the whole file.
BuildParts default keybindings are “ctrl+b” (for Windows and Linux) and “super+b” (for Mac). It’s the same as the default keybindin…
Standard build systems in Sublime don’t support any sort of variable that expands out to the currently selected text, since in the general case you want to build files and not just selected parts of them.
When you execute a build, the sublime-build file can contain the optional key target that specifies what Sublime command to use to execute the build, and if that key is not used, it’s assumed to be the built in exec command.
In order to do what you want, you need to create a custom build targ…