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 865
  • Linux 593
May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 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
Windows 0 1 1 0 0 0 0 2 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 3 0 0 0 1 0 0 1 0
Mac 0 1 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 1 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 1 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.