GitXplorerGitXplorer
l

vim-swift

public
121 stars
10 forks
3 issues

Commits

List of commits on branch master.
Unverified
19bbb5e1f9fc049e799f7a62e14933602f06d363

Fix re-quotation of arguments to :ShellRun

llilyball committed 9 years ago
Unverified
cdbe146bf33a9497f51528d6c65bc4fac08dde0a

Add some more info to README.md

llilyball committed 10 years ago
Unverified
2789f6077681330eb07f53042dde16e6a6449c72

Don't require g:swift_device when running Syntastic checker

llilyball committed 10 years ago
Unverified
9d67562ef07a834e6f05d48eeb4dc98cea65d32d

Stop hard-coding the list of 32-bit simulator devices

llilyball committed 10 years ago
Unverified
c9f3fa234e4db56d7db10016a002cf17f38c5219

Add a FAQ entry to the docs

llilyball committed 10 years ago
Unverified
2265603371e19dc4b6a0da07edf0a70353dac280

Add option g:swift_suppress_showmatch_warning

llilyball committed 10 years ago

README

The README file for this repository.

Swift file type plugin for Vim

This is a Vim file type plugin for the Swift programming language.

Features

  • Full syntax coloring for Swift (including support for folding).
  • Helper commands for running Swift scripts and printing various compilation stages, including LLVM IR and assembly.
  • Full support for compiling/running iOS scripts using the iOS Simulator.
  • Supports multiple installations of Xcode.

See :help ft-swift for more details.

Installation

Install this plugin with your Vim plugin manager of choice.

Add the following to your .vimrc:

NeoBundle 'kballard/vim-swift', {
        \ 'filetypes': 'swift',
        \ 'unite_sources': ['swift/device', 'swift/developer_dir']
        \}

Run the following commands in your terminal:

cd ~/.vim/bundle
git clone https://github.com/kballard/vim-swift.git