All Projects β†’ alienhard β†’ Sublimeallautocomplete

alienhard / Sublimeallautocomplete

Extend Sublime autocompletion to find matches in all open files of the current window

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sublimeallautocomplete

Carbonsublime
πŸš€ A Sublime Text 3 Plugin for Carbon. (https://carbon.now.sh)
Stars: ✭ 104 (-88.52%)
Mutual labels:  sublime-text, sublime-text-3, sublime, sublime-package
sublime-live-server
🌍️ Launch a Development Server directly from Sublime Text
Stars: ✭ 49 (-94.59%)
Mutual labels:  sublime, sublime-text, sublime-text-3, sublime-package
Coffeescript Sublime Plugin
Syntax highlighting and checking, commands, shortcuts, snippets, compilation and more.
Stars: ✭ 296 (-67.33%)
Mutual labels:  plugin, sublime-text, sublime-text-3, sublime
Chromerepl
A Sublime Text plugin to execute JavaScript in Google Chrome
Stars: ✭ 347 (-61.7%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (-98.34%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
Nineties
πŸ’Ύ Colors for World Wide Web pioneers
Stars: ✭ 16 (-98.23%)
Mutual labels:  sublime, sublime-text, sublime-text-3
Nord Sublime Text
An arctic, north-bluish clean and elegant Sublime Text theme.
Stars: ✭ 109 (-87.97%)
Mutual labels:  sublime-text, sublime-text-3, sublime
sublime-text-theme-switcher-menu
Painless theme selection in Sublime Text ⚑
Stars: ✭ 18 (-98.01%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
sublime
Repository for the Tandem Sublime Plugin
Stars: ✭ 22 (-97.57%)
Mutual labels:  sublime, sublime-text, sublime-text-3
Ayu
πŸŽ¨πŸ–Œ Modern Sublime Text theme
Stars: ✭ 3,933 (+334.11%)
Mutual labels:  sublime-text, sublime-text-3, sublime
Sublime-Pretty-Shell
🐚 Shell Script Formatter / Syntax Checker (Powered by shfmt)
Stars: ✭ 28 (-96.91%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
Milotic
Color Full Theme for All Text Editors!
Stars: ✭ 23 (-97.46%)
Mutual labels:  sublime, sublime-text, sublime-text-3
Sublime Text Plugins For Frontend Web Development
πŸ“ Collection of plugins for Frontend Web Development
Stars: ✭ 1,127 (+24.39%)
Mutual labels:  plugin, sublime-text, sublime-text-3
Css3
The most complete CSS support for Sublime Text
Stars: ✭ 178 (-80.35%)
Mutual labels:  sublime-text, sublime-text-3, sublime
eRCaGuy dotfiles
.bashrc file, terminal prompt that shows current git branch, Arduino setup, Eclipse setup, git diff with line numbers, helpful scripts, improved Linux productivity, etc.
Stars: ✭ 84 (-90.73%)
Mutual labels:  sublime, sublime-text, sublime-text-3
Sublime Jekyll
A Sublime Text package for Jekyll static sites.
Stars: ✭ 160 (-82.34%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
Sublime zk
A SublimeText3 package featuring ID based wiki style links, and #tags, intended for zettelkasten method users. Loaded with tons of features like inline image display, sophisticated tag search, note transclusion features, support for note templates, bibliography support, support for multiple panes, etc. to make working in your Zettelkasten a joy πŸ˜„.
Stars: ✭ 408 (-54.97%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package
Productive Sublime Snippets Ruby
Ruby Snippets for Sublime Text
Stars: ✭ 109 (-87.97%)
Mutual labels:  sublime-text, sublime-text-3, sublime
Golite
Add essential language support for the Go language to Sublime Text 3.
Stars: ✭ 14 (-98.45%)
Mutual labels:  sublime, sublime-text, sublime-text-3
sublime-text
Subime Text 相关衄源攢集整理
Stars: ✭ 62 (-93.16%)
Mutual labels:  sublime-text, sublime-text-3, sublime-package

All Autocomplete Sublime Text

Extends the default autocomplete to find matches in all open files.

By default Sublime only considers words found in the current file.

Install

If you have Package Control installed in Sublime just press ctrl+shift+p (Windows, Linux) or cmd+shift+p (OS X) to open the Command Pallete. Start typing 'install' to select 'Package Control: Install Package', then search for AllAutocomplete and select it. That's it.

You can also install this package manually by entering the Packages directory of Sublime Text 2/3 and issuing on a terminal:

git clone https://github.com/alienhard/SublimeAllAutocomplete

Settings

You can disable the additional autocompletion provided by this package for specific source files and even select syntax within files. In the Sublime menu go to Preferences > Package Settings > All Autocomplete > Settings – User.

Example: the following Setting would disable completions when you're editing CSS or JavaScript code, and would not source any completions from Markdown files:

"exclude_from_completion": [
	"css",
	"js"
],
"exclude_sources": [
  "markdown"
],
"min_word_size": 5, // don't show completions for words with fewer than this many chars
"max_word_size": 40 // don't show completions for words with more than this many chars

The names provided in this list are matched against the so-called "syntax scope" of the currently autocompleted input. For example, in a CSS file, when you start typing a new CSS class name, the syntax scope is "source.css meta.selector.css". The names you provide in the config above are partially matched against this scope. This means, you can completely disable All Autocomplete for all CSS code by specifying "css" – or you can disable it only for specific parts, for example, CSS selectors by specifying "selector.css". Or to disable completion in comments, include "comment" in the list.

Note, if you want to disable it in C source, but not in CSS, add "source.c" in the list (since "c" alone would also match css).

You can find the syntax scope of code at the current cursor position with Control+Shift+P.

LICENSE

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004

Copyright (C) 2013 Adrian Lienhard [email protected]

Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  1. You just DO WHAT THE FUCK YOU WANT TO.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].