All Projects → gordio → ToggleWords

gordio / ToggleWords

Licence: MIT License
Sublime Text 3 Plugin - Toggle words on hotkey

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to ToggleWords

github markdown snippets
GitHub flavored Markdown with plain'ol HTML knowledge! Boom!
Stars: ✭ 23 (-36.11%)
Mutual labels:  sublime-text-3
sublime-text
Subime Text 相关资源收集整理
Stars: ✭ 62 (+72.22%)
Mutual labels:  sublime-text-3
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (-58.33%)
Mutual labels:  sublime-text-3
Milotic
Color Full Theme for All Text Editors!
Stars: ✭ 23 (-36.11%)
Mutual labels:  sublime-text-3
urdu-characters
📄 Complete collection of Urdu language characters & unicode code points.
Stars: ✭ 24 (-33.33%)
Mutual labels:  words
sublime-evernote
Open and Save Evernote notes from Sublime Text 3 using Markdown
Stars: ✭ 1,164 (+3133.33%)
Mutual labels:  sublime-text-3
alfred-sublime-text
Filter and open your Sublime Text (2 and 3) project files from Alfred.
Stars: ✭ 66 (+83.33%)
Mutual labels:  sublime-text-3
CodeChampion
Plays epic sound clips when you write epic code on sublime Text!
Stars: ✭ 30 (-16.67%)
Mutual labels:  sublime-text-3
toggler
Atom plugin - Toggle words and symbols
Stars: ✭ 21 (-41.67%)
Mutual labels:  words
sublime-patcher
Bash script for patching/cracking Sublime Text on Linux
Stars: ✭ 20 (-44.44%)
Mutual labels:  sublime-text-3
network tech
Cisco config syntax and snippets for Sublime Text
Stars: ✭ 82 (+127.78%)
Mutual labels:  sublime-text-3
GithubEmoji
Github emoji in markdown documents and commit messages for Sublime Text
Stars: ✭ 30 (-16.67%)
Mutual labels:  sublime-text-3
Sublundo
A Sublime Text 3 package implementing Vim-like branching undo/redo.
Stars: ✭ 16 (-55.56%)
Mutual labels:  sublime-text-3
emojityper
Github said "Error saving your changes: Description contains unicode characters above 0xffff" when I put the FACE LAUGHING WITH TEARS OF JOY emoji in this box
Stars: ✭ 76 (+111.11%)
Mutual labels:  words
PyLex
Perform lexical analysis on words, one word at a time.
Stars: ✭ 60 (+66.67%)
Mutual labels:  words
AFileIcon
Sublime Text File-Specific Icons for Improved Visual Grepping
Stars: ✭ 192 (+433.33%)
Mutual labels:  sublime-text-3
WordFrequencyPython
Python code to find out most frequent words from different word lists
Stars: ✭ 31 (-13.89%)
Mutual labels:  words
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 (+133.33%)
Mutual labels:  sublime-text-3
pymolsnips
Pymolsnips is a library of PyMOL scripting language code fragments for several popular text editors.
Stars: ✭ 19 (-47.22%)
Mutual labels:  sublime-text-3
Nineties
💾 Colors for World Wide Web pioneers
Stars: ✭ 16 (-55.56%)
Mutual labels:  sublime-text-3

About

Plugin for Sublime Text 3 - toggle words with support for user defined arrays.

 true -> false
  yes -> no
   on -> off
    0 -> 1
 left -> right
  top -> bottom
   up -> down
width -> height

and this automatically understand original words and ->

false <-> true
False <-> True
FALSE <-> TRUE

Usage

Set cursor on word or select word and press:

  • macOS - Cmd+Alt+X
  • Windows - Ctrl+Alt+X
  • Linux - Ctrl+Alt+X

Installation

  1. Install Package Control
  2. Open ST command panel (Shift+Control+P), choose Package Control — Install Package, type Toggle, find Toggle Words and press Enter
  3. Have fun!

or

  1. Open you Sublime Text 3 Packages directory
  2. Run git clone git://github.com/gordio/ToggleWords
  3. Have fun!

Configure

Keys

You may redefine the key bindings in your sublime-keymap with command toggle_word.

User defined arrays

You can define lists of words, which will be cycled through in order.

Example file ToggleWords.sublime-settings:

{
    // User defined words
    "toggle_words_dict": [
        ["left", "right"],
        ["up", "down"],
        ["top", "bottom"],
        ["width", "height"],
        ["red","orange","yellow","green","blue","purple"],
        ["true", "false"],
        ["yes", "no"],
        ["on", "off"],
        ["0", "1"]
    ]
}

If installed using Package Control dictionary file should be located in <data_path>/Packages. To get there select Preferences -> Browse Packages... in Sublime menu. Create one if it does not exist.

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