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

Autocompletion​Fuzzy

by shagabutdinov ALL

Sublime anyword completion

Details

Installs

  • Total 15K
  • Win 9K
  • Mac 4K
  • Linux 3K
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 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 2 1 0 0 1 0 0 1 0 0 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Linux 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1

Readme

Source
raw.​githubusercontent.​com

Sublime Autocompletion plugin

This is really glorious plugin that reduce plain typing considerably while coding.

Demo

Installation

  • Package Control: plugin is avaiable under AutocompletionFuzzy in sublime's package-control.
  • GIT: plugin should be cloned under AutocompletionFuzzy name.

Features

Provides 8 different types of autocompletion:

  1. Complete word - basic completion; completes word that occurenced in text and opened files.

  2. Complete word (fuzzy) - like “complete word” but uses fuzzy match over words.

  3. Complete subword - completes snake_case and CamelCase words parts.

  4. Complete long word - complete long words: class names with namespaces (Class::Name), method calls (object.method), filenames (file/name.py), urls (http://…).

  5. Complete long word (fuzzy) - line “complete long word” but uses fuzzy match over words.

  6. Complete nesting - completes over and into brackets: can complete full method call (method(arg1, arg2)), method arguments (arg1, arg2), array ([value1, value2]) and everything that has brackets over it or after it.

  7. Complete nesting (fuzzy) - like “complete nesting” but uses fuzzy match.

  8. Complete line - competes whole line.

However it maps only 6 types of autocompletion. Not fuzzy completions aren't mapped to keyboard shortcuts by default. See “installation” section if you would like map non-fuzzy completion behavior.

All lists are build in order of first occurence of word. That makes autocomplete very predictable and easy to use.

Words completion works over all files opened. Nesting completion works only in current file (because of performance issues)

Installation

This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.

If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.

If you don't like fuzzy behavior you should rebind keyboard shortcuts after installation in the “Autocompletion/Default (OSNAME).sublime-keymap” file (non-fuzzy behavior are commented by default).

Usage

Type a one of two characters of the beginning of word. Than hit keyboard shortcut or run command to complete the word. You can run same command again to complete next/previous occurence.

If you like fuzzy completion it is really useful to type a start character and following character from the middle of word to receive more accurate completion. E.g. for complete localvariable type “lv” and hit keyboard shortcut. First character of word should always be character of completion. However if word starts with underscore () it possible to type next character, e.g. for complete _local_variable same “lv” will work.

Commands

Description Keyboard shortcuts Command palette
Complete word forward (fuzzy) ctrl+p Autocompletion: complete word forward (fuzzy)
Complete word backward (fuzzy) ctrl+o Autocompletion: complete word backward (fuzzy)
Complete word forward Autocompletion: complete word forward
Complete word backward Autocompletion: complete word backward
Complete subword forward ctrl+shift+p Autocompletion: complete subword forward
Complete subword backward ctrl+shift+o Autocompletion: complete word backward
Complete long word forward (fuzzy) ctrl+alt+p Autocompletion: complete long word forward (fuzzy)
Complete long word backward (fuzzy) ctrl+alt+o Autocompletion: complete long word backward (fuzzy)
Complete long word forward Autocompletion: complete long word forward
Complete long word backward Autocompletion: complete long word backward
Complete nesting forward (fuzzy) alt+p Autocompletion: complete nesting forward (fuzzy)
Complete nesting backward (fuzzy) alt+o Autocompletion: complete nesting backward (fuzzy)
Complete nesting forward Autocompletion: complete nesting forward
Complete nesting backward Autocompletion: complete nesting backward
Complete line forward alt+shift+p Autocompletion: complete line forward
Complete line backward alt+shift+o Autocompletion: complete line backward

Dependencies