Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dimatura/spin.vim
https://github.com/dimatura/spin.vim
Last synced: about 19 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/dimatura/spin.vim
- Owner: dimatura
- Created: 2012-07-23T17:25:45.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-07-23T17:31:28.000Z (over 12 years ago)
- Last Synced: 2023-03-11T04:28:23.768Z (over 1 year ago)
- Language: VimL
- Homepage:
- Size: 95.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spin.vim
This is the git repo for my (old, incomplete) Spin syntax file. The Vim scripts
page is [here](http://www.vim.org/scripts/script.php?script_id=3019).## script type
syntax
## descriptionThis is a syntax file for the Spin language, designed by Parallax for the
[Propeller microcontroller](http://www.parallax.com/tabid/407/Default.aspx).
Now there's cross-platform command line tools to upload your Spin programs to
the Propeller, so you don't need the Propeller IDE (and hence, Windows) to use
it.I based this syntax file on the syntax file for the Python language, since the
languages have certain similarities.
## install detailsThe easiest way is to put `spin.vim` in your `.vim/syntax` directory and add
something like the following to your `.vimrc`:au BufRead,BufNewFile *.spin set filetype=spin
au! Syntax spin source $HOME/.vim/syntax/spin.vim---
Daniel Maturana - [email protected]