Merge pull request #3090 from adamlazz/contrib-st3
contrib: Sublime Text 3 Ruby syntax association for Vagrantfiles
This commit is contained in:
commit
cd2171c744
|
@ -6,7 +6,9 @@ for each item will be kept below.
|
||||||
|
|
||||||
## List of Contrib Items
|
## List of Contrib Items
|
||||||
|
|
||||||
* `emacs` - Contains a file showing how to associate `Vagrantfile` with
|
* `bash` - Contains a bash script for improving autocompletion with bash.
|
||||||
Ruby syntax highlighting.
|
* `emacs` - Contains a file for enabling Ruby syntax highlighting for `Vagrantfile`s in `emacs`.
|
||||||
|
* `st` - Contains a `.sublime-settings` file for enabling Ruby syntax highlighting
|
||||||
|
for `Vagrantfile`s in Sublime Text.
|
||||||
* `vim` - Contains a `.vim` file for enabling Ruby syntax highlighting
|
* `vim` - Contains a `.vim` file for enabling Ruby syntax highlighting
|
||||||
for `Vagrantfile`s.
|
for `Vagrantfile`s in `vim`.
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
# Autocompletion for Vagrant just put this line in your ~/.profile or link this file into it like:
|
# Autocompletion for Vagrant just put this line in your ~/.profile or link this file into it like:
|
||||||
# source /path/to/vagrant/contrib/bash/completion.sh
|
# source /path/to/vagrant/contrib/bash/completion.sh
|
||||||
_vagrant() {
|
_vagrant() {
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"extensions":
|
||||||
|
[
|
||||||
|
"Vagrantfile"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue