All Projects → Zinggi → DictionaryAutoComplete

Zinggi / DictionaryAutoComplete

Licence: other
This adds dictionary entries to the completions inside comments. For lazy typers!

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DictionaryAutoComplete

Pawn Sublime Language
Pawn language settings for Sublime Text 3. Copied from C++ but with Pawn language and SA:MP specific modifications.
Stars: ✭ 26 (-70.79%)
Mutual labels:  autocompletion, sublime-text
UnrealScriptIDE
Auto-completion, Syntax Highlighting, Go to Declaration, Build and Run and more..
Stars: ✭ 86 (-3.37%)
Mutual labels:  autocompletion, sublime-text
network tech
Cisco config syntax and snippets for Sublime Text
Stars: ✭ 82 (-7.87%)
Mutual labels:  autocompletion, sublime-text
After-Effects-Scripting-Sublime-Text-Package
Sublime Text 2 package for After Effects.
Stars: ✭ 69 (-22.47%)
Mutual labels:  sublime-text
counsel-jq
Traverse complex JSON and YAML structures with live feedback
Stars: ✭ 99 (+11.24%)
Mutual labels:  autocompletion
sublime-monokai-free
A beautiful, modern, high quality, Monokai theme for Sublime Text 3.
Stars: ✭ 46 (-48.31%)
Mutual labels:  sublime-text
pymolsnips
Pymolsnips is a library of PyMOL scripting language code fragments for several popular text editors.
Stars: ✭ 19 (-78.65%)
Mutual labels:  autocompletion
sublime
A danker, more neon theme for sublime text
Stars: ✭ 17 (-80.9%)
Mutual labels:  sublime-text
sublime-sesame
Add, open, remove, switch, and manage projects and folders, using the command palette and key bindings.
Stars: ✭ 15 (-83.15%)
Mutual labels:  sublime-text
chelevra.tmtheme
Sublime Text Syntax Highlighting Theme
Stars: ✭ 23 (-74.16%)
Mutual labels:  sublime-text
mjml-syntax
Sublime package for the MJML
Stars: ✭ 44 (-50.56%)
Mutual labels:  sublime-text
sublime-yardoc
SublimeText plugin to generate yardoc
Stars: ✭ 34 (-61.8%)
Mutual labels:  sublime-text
anaconda go
AnacondaGO adds autocompletion, linting and IDE features for Golang to your Sublime Text 3
Stars: ✭ 39 (-56.18%)
Mutual labels:  sublime-text
sublime-scheme-alabaster
Minimalist color scheme for Sublime Text 3
Stars: ✭ 165 (+85.39%)
Mutual labels:  sublime-text
Sublime-QML
QML support for Sublime Text 2 and Sublime Text 3
Stars: ✭ 19 (-78.65%)
Mutual labels:  sublime-text
Laravel.tmTheme
A Sublime Text 3 theme based on the Laravel documentation colour scheme
Stars: ✭ 40 (-55.06%)
Mutual labels:  sublime-text
YaraSyntax
YARA package for Sublime Text
Stars: ✭ 15 (-83.15%)
Mutual labels:  sublime-text
dotfiles
Software Installation, Configuration and Preferences for Springload
Stars: ✭ 23 (-74.16%)
Mutual labels:  sublime-text
Sublime-CMakeLists
Sublime Text 2/3 - CMake Package
Stars: ✭ 62 (-30.34%)
Mutual labels:  sublime-text
Nineties
💾 Colors for World Wide Web pioneers
Stars: ✭ 16 (-82.02%)
Mutual labels:  sublime-text

Dictionary Auto-Complete

Pic

This plug-in adds auto-completion entries from the dictionary file. Useful for very lazy typers like me or if you're searching for a particular word.

The default scopes where this plug-in is active are comments, strings and text. But you can customize them.

Just type Ctrl + Space to show auto-completion, or allow auto-complete to always show suggestions by changing your 'Settings - User' for example like this:

"auto_complete_selector": "text, comment, string"

DictionaryAutoComplete takes the suggestions from the dictionary used for spell-checking by default. But if you want you can set another one in the settings (for example a frequency dictionary).

Installation

Very easy with Package Control right inside Sublime Text 2/3 (Package Control needs to be installed):

  1. Ctrl + shift + P
  2. Search for "inst", hit enter
  3. Search for "DictionaryAutoComplete", hit enter

Manually (not recommended):

  1. Clone or download this package
  2. Put it into your Packages directory (find using 'Preferences' -> 'Browse Packages...')

Configuration

You can customize the following parameters in (a copy in User package folder of) DictionaryAutoComplete.sublime-settings :

  • encoding : The dictionary encoding (like "UTF-8" or "ISO-8859-1").
  • insert original : If the default auto-completion list should be used or not.
  • use added words : If added_words section of the settings should be used or not.
  • use ignored words : If ignored_words section of the settings should be used or not.
  • maximum results : The maximal number of results that this plug-in should return (for slower computer smaller number is better).
  • scopes : Define the scopes where this plug-in is active.
  • minimal length : The minimal length of a word to be completed (for slower computer you should play with this parameter to find what is optimal).
  • forbidden prefixes : This allows to not auto-complete after some characters, which can be useful for compatibility with other plug-ins.
  • languages : A language specific settings. Here you can overwrite all the previous settings for a particular language. Here is also the place to set an alternative dictionary if you want.
  • dictionary : A path to alternative dictionary to use in place of the default dictionary used for spell-checking. This allows you for example to use a frequency dictionary that will show in first place the most used words.
  • smash characters: Allows you to identify characters with accents in some languages. For example for French you can set
    "smash characters": ["eéèêë", "aàâä", "cç", "iîï", "oôö", "uùûü", "yÿ"]
    
    and then when you type "lecon" it will suggest you "leçon".
  • numeric shortcuts: Change the way auto complete behaves. All the choices are numbered and pressing a number select the corresponding completion. If you use this setting you should probably set maximum results to less than 10.
  • dictionary symbol: Is the symbol displayed on the right that is by default 🕮. You can choose for example one of the Unicode book symbols: 📒, 📓, 📔, 📕, 📖, 📗, 📚, 📜, 🕮.
  • reset on every key: [experimental] By default ST do not refresh the auto-completion list on every key press.To overcome this we can force completion list refresh by first hiding then showing it. This is done when this setting is set to true (by default it is false).

Commands

Two commands are added in the Command Palette (Ctrl+Shift+P):

  • Dictionary Auto Complete: Toggle : Activate/deactivate this plug-in.
  • Auto Complete: Toggle : Activate/deactivate the sublime auto-completion.

License

Dictionary Auto-Complete for Sublime Text 2/3 Copyright (C) 2013 Florian Zinggeler Copyright (C) 2018 Kroum Tzanev

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

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].