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

Mongoose Coffee​Script

by PranavSathy ST3

Better CoffeeScript with Mongoose Snippets & Syntax Highlighting

Details

Installs

  • Total 3K
  • Win 1K
  • Mac 872
  • Linux 710
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 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
Linux 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

Readme

Source
raw.​githubusercontent.​com

Jump to Section

Overview

This package is for Sublime Text 3. There is no support for older versions of Sublime, please feel free to fork and add that support.

** Most of this README is taken directly from Better Coffeescript by aponxi **

Please refer to the original repository @ https://github.com/aponxi/sublime-better-coffeescript to see more elaborate / platform specific instructions, and simply replace the URL of the git repository, and rename “Better CoffeeScript” to “Mongoose CoffeeScript”

Description

Originally cloned from Better Coffeescript by [aponxi] : https://github.com/aponxi/sublime-better-coffeescript . After developing in CoffeeScript for awhile, and utilizing Express.js and Mongoose ODM, I realized that a majority of my RESTful API was several calls to Models and querying and fetching data. I loved Better CoffeeScript, but I realized that it would be even better (for me) if it had syntax highlighting where I utilized my models. So… I decided to pull it and make it seperate.

I hope it comes of use, and if you find any bugs or general enhancements, please report it in the issues page.

Installation

via Package Control

This is the recommended installation method.

If you have Sublime Package Control, you know what to do. If not, well: it's a package manager for Sublime Text 3. Installation guide can be found here. After installing the package manager:

  • Open the Command Pallete (ctrl+shift+P or cmd+shift+P).
  • Type “Install Package” and hit return.
  • Type “Mongoose CoffeeScript” and hit return.

via Source Control

If you plan to contribute, then you should install via this method. Otherwise it is recommended that you install the package via Package Control above

Sublime stores packages in the following locations:

Nix: ~/.config/sublime-text-3/packages
Mac: ~/Library/Application\ Support/Sublime\ Text\ 3/Packages
Win: %APPDATA%\Sublime Text 3\Packages

Open a Terminal/Console and run the following commands, replacing PACKAGE_PATH with the path corresponding to your OS above.

cd PACKAGE_PATH
git clone https://github.com/PranavSathy/sublime-mongoose-coffeescript.git "Mongoose CoffeeScript"

Snippets

  • Use TAB to run a snippet after typing the trigger.
  • Use TAB and shift+TAB to cycle forward/backward through fields.
  • Use ESC to exit snippet mode.

Snippet Triggers

Mongoose

aggregate:  agg
count: cnt
create: crt
discriminator: disc
distinct: dist
ensureIndexes: enin
findById: fbi
findByIdAndRemove: fbir
findByIdAndUpdate: fbiu
findOne: fo
findOneAndRemove: mfor
findOneandUpdate: fou
geoNear: gn
geoSearch: gs
mapReduce: mr

Latest Changelog

v0.1.0 May 16th, 2015

  • Cloned from sublime-better-coffeescript
  • Added mongoose specific Snippets
  • Syntax highlighting for RegEx Model.{mongooseFunc}

Credits

  • As mentioned before, thanks to all the individual contributors of the sublime-better-coffeescript project for making my day that much better, and to [aponxi] himself for the same reason as well.