Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/technosophos/Vala-TMBundle
A TextMate bundle for Vala development.
https://github.com/technosophos/Vala-TMBundle
Last synced: 2 months ago
JSON representation
A TextMate bundle for Vala development.
- Host: GitHub
- URL: https://github.com/technosophos/Vala-TMBundle
- Owner: technosophos
- License: mit
- Created: 2010-11-12T15:16:51.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2016-03-05T03:40:04.000Z (almost 9 years ago)
- Last Synced: 2024-08-02T00:26:12.239Z (5 months ago)
- Homepage:
- Size: 30.3 KB
- Stars: 21
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vala - Vala-TMBundle - A TextMate bundle that provides Vala syntax highlighting, code completion, etc. Sublime Text 3 can also use this plugin. (Editor Plugins / Weather)
README
# TextMate Support for the Vala Programming Language
This bundle provides [Vala](http://live.gnome.org/Vala) syntax highlighting, code completion, etc. for the
TextMate text editor.# Installing the TextMate Bundle
## Using Git:
mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/technosophos/Vala-TMBundle.git "Vala.tmbundle"
osascript -e 'tell app "TextMate" to reload bundles'## Without Git:
mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd ~/Library/Application\ Support/TextMate/Bundles
wget https://github.com/technosophos/Vala-TMBundle/tarball/master
tar zxf technosophos-Vala-TMBundle*.tar.gz
rm technosophos-Vala-TMBundle*.tar.gz
mv technosophos-Vala-TMBundle* "Vala.tmbundle"
osascript -e 'tell app "TextMate" to reload bundles'# Installing for Sublime Text 2
Sublime Text is able to use language and snippets from TextMate. Sublime Text 2 is adding even more TextMate compatibility support. This bundle can be installed for Sublime Text.## Using Git:
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/technosophos/Vala-TMBundle.git Vala## Without Git:
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
wget https://github.com/technosophos/Vala-TMBundle/tarball/master
tar zxf technosophos-Vala-TMBundle*.tar.gz
rm technosophos-Vala-TMBundle*.tar.gz
mv technosophos-Vala-TMBundle* Vala# Getting Vala on the Mac
The easiest way to get Vala on the Mac is to use Homebrew and run
the following:$ brew install vala
LibGee is strongly suggested:
$ brew install libgee
This will install all you need to begin working with Vala.
# Credits
This is based on the original Vala TextMate bundle by Daniel Lucraft
[The original](http://danlucraft.com/blog/2008/12/vala-textmate-bundle/)The Vala grammer is based upon the Java grammar that ships with TextMate.