Merge Variables
Text Replacement Package for Sublime Text 2 and 3
Details
Installs
- Total 2K
- Win 1K
- Mac 563
- Linux 235
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Merge Variables
Text Replacement Package for Sublime Text 2 and 3
Merge Variables allows you define sets of replaceable strings. When you run the Merge Variables
command, the package expands each of the strings with a replacement. For example, you can turn this:
<a href="http://{{HOSTNAME}}/page">{{TITLE}}</a>
into:
<a href="http://www.myexamplesite.com/page">My Example Site</a>
How to Use
Creating Sets
To define the your variables and their values, open the user settings for the package. Create a "sets"
member. This member will be an object, and each of its members will be the name of a “set”. Each of the sets will also be an object containin key-value pairs for the variables and their values. Here's an example:
{
"sets": {
"mysite": {
"{{HOSTNAME}}": "www.myexamplesite.com",
"{{TITLE}}": "My Example Site"
}
}
}
Note: There's no need to use double curly braces around your variables names. This is my convention, but it isn't required. You may want to use some symbols on either side to safeguard against unwanted replacements. %PERCENTS%, [brackets], =Equals=, etc. could all be good choices.
Next you'll need to make this an active set. Add an "active_sets"
member to the user settings file. This member is a list of all of the names of sets you would like to use.
{
"active_sets": ["mysite"],
"sets": {
"mysite": {
"{{HOSTNAME}}": "www.myexamplesite.com",
"{{TITLE}}": "My Example Site"
}
}
}
Merging Variables
Once you have your variables defined, open the Command Palette (Shift + Command + P) and enter Merge Variables
.
Cascading Sets
But wait! There's more! You can define multiple sets, and merge them together. In this example, there are three sets: "mysite"
, "mysite-development"
, and "some other set we're not going to use yet"
.
{
"active_sets": ["mysite", "mysite-development"],
"sets": {
"mysite": {
"{{HOSTNAME}}": "www.myexamplesite.com",
"{{TITLE}}": "My Example Site"
},
"mysite-development": {
"{{HOSTNAME}}": "dev.myexamplesite.com"
},
"some other set we're not going to use yet": {
"{{HOSTNAME}}": "www.not-this-site.com",
"{{TITLE}}": "Won't See This Title"
}
}
}
I've specified the list of active sets as ["mysite", "mysite-development"]
. This tells the package to start wth the key-value pairs from "mysite"
first, then override those values with the ones in "mysite-development"
. Here's what happens:
{{HOSTNAME}}
is defined in both sets. The value from the last set takes precedence.{{TITLE}}
is defined in the first set, but not the second. That's okay. The value from the first carries through.- The set
"some other set we're not going to use yet"
is not in the list of active sets, so its values are ignored.
The result:
<a href="http://dev.myexamplesite.com/page">My Example Site</a>
Programatically
If you're super cool, and you write Sublime packages too, you may want to call Merge Variables
in code. When you do, you can pass the list of active sets at call time. Here's an example:
view.run_command("merge_variables", active_sets=["this_set", "that_set"])
Installation
Sublime Package Control
You can install Merge Variables using the excellent Package Control package manager for Sublime Text:
- Open “Package Control: Install Package” from the Command Palette (
Shift
+Command
+P
). - Select the “Merge Variables” option to install Merge Variables.
Git Installation
To install manually using Git, clone to your “Packages” directory.
git clone git@github.com:pjdietz/sublime-merge-variables.git "Merge Variables"
Note: Some features such as the menu command to open the default settings will not work if the package is not installed to a directory called “Merge Variables”.
Author
PJ Dietz
Copyright and license
Copyright 2013 PJ Dietz