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

Fold Javascript Functions

by LuckyKat ST3

Folds all JS functions with a single command

Details

Installs

  • Total 4K
  • Win 3K
  • Mac 863
  • Linux 593
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 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7
Windows 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 3 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 1
Mac 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 0 0 0 0 0 0
Linux 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 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Fold Javascript Functions

A plugin for Sublime Text 3 for Javascript code. This plugin folds all functions except where your cursor is. This effectively removes all out-of-scope contexts, reducing a lot of noise while programming in JavaScript. Default shortcut key is cmd+alt+k. (ctrl+alt+k on Windows)

Additional features

There is an “Unfold All” command from the command palette. Furthermore, these options are available in the settings:

  • select_to_unfold: (on by default) One thing that annoys me in Sublime Text is to press that tiny triangle to unfold code. With this you can double click (which selects code) to open a folded block.
  • fold_on_open: (off by default) Folds upon opening a file.
  • brace_selection: (0 by default) Which part of the braces to fold. 0 = only inner content of braces, 1 = include braces, 2 = greedy inclusion (folds everything starting from the parameter list)
  • fold_constructors: (off by default) The plugin will also fold object literal parameters inside constructors. For example: var myObj = new Constructor({...});
  • auto_fold: (off by default) An experimental feature. Automatically folds and unfolds while you move your cursor.

Finally, the - admittedly unusual - Fold Args command (cmd+alt+shift+k) folds all function arguments in the selected code. This simplifies the view on the code and highlights the parts that are not yet “outsourced” to helper functions, which may give you some ideas for refactoring.

Requirements

Make sure you have the latest version of Sublime Text 3 installed. As of writing, build 3126. The plugin makes use of Sublime's selectors to recognize the blocks with curly braces. Unfortunately, this keeps changing on every now and then (twice now since development of this plugin).

No support for Sublime Text 2, sorry.