ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Far​Cry

by seancoyne ALL

A collection of FarCry snippets for Sublime Text

Details

Installs

  • Total 187
  • Win 116
  • Mac 50
  • Linux 21
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13
Windows 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 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 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 0 0 0 0 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

Readme

Source
raw.​githubusercontent.​com

FarCry - Sublime Text

A collection of FarCry snippets for Sublime Text

Installation

The easiest way to install is via Package Control

Package Control

Press CMD/CTRL+SHIFT+P, choose “Package Control: Install Package”, search for “FarCry”

Manual Install

Simply clone the repository into your Packages directory

cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/seancoyne/farcry-sublimetext.git FarCry

Usage

There are several ways to insert a snippet.

Menu

Tools -> Snippets… This will display a list of snippets for your installation. You can filter to show only the FarCry snippets by typing “FarCry” Use the arrow keys to choose a snippet, press ENTER to insert the snippet.

Command Palette

Tools -> Command Palette or CMD/CTRL+SHIFT+P This will display the command palette. To filter only snippets you can type “Snippet”, or to filter only the FarCry snippets type “FarCry”. Use the arrow keys to choose a snippet, press ENTER to insert the snippet.

Text Trigger

Many of the snippets have a text triggers. For example, the webskin snippet is triggered by the text “webskin”. In any file if you type “webskin” (w/o quotes) then press tab the snippet will be inserted. You can view the *.sublime-snippet files in the package to determine the trigger text.

Snippet Fields

Most snippets have fields where you can enter information. When you insert the snippet your cursor will be placed at the first field. You can enter the value then press tab to move to the next field. The buildlink snippet is a good example. When you insert the snippet you will see this (| is the cursor):

Error: language “cfml” is not supported
<skin:buildLink objectid="|"><cfoutput></cfoutput></skin:buildLink>

You can enter an objectid and press tab and you will see this:

Error: language “cfml” is not supported
<skin:buildLink objectid="the object id you entered"><cfoutput>|</cfoutput></skin:buildLink>

You can then enter the text for the link and press tab one last time which will move the cursor to the end of the line.

Contributions

If you have a snippet you would like to add please fork the repository and send me a pull request.