@phoenix-plugin-registry/bracketstoix

3.7.1 • Public • Published

Logo

Brackets Utility Belt

Strap on the belt and become a Ninja Developer with these utilities.

This extension is also available for Visual Studio Code (vsctoix) and
Atom Editor(atomtoix).

If you find this extension useful, please, add a github star to show your support.

Interface

BracketstoIX adds a top-menu called IX.  
To prevent from cluttering the menu with all the commands, only a few commands were added to the menu.
Use Command mapper to add which ones you prefer, and setup the shortcuts.
No default shortcuts were define to prevent collision with other plugins.

Utilities

Case Change

Selection Policy is word.

Utility Example
UpperCase before:classNameFunc
after:CLASSNAMEFUNC
LowerCase before:classNameFunc
after:classnamefunc
Capitalize before:classNameFunc
after:ClassNameFunc
Camel Case before:ClassNameFunc
after:classNameFunc
Dash Case before:ClassNameFunc
after:class-name-func
Cycle Case before: _ClassNameFunc
after: _classNameFunc -> _CLASS_NAME_FUNC -> _class_name_func -> _class-name-func -> _class name func ->_ClassNameFunc
Add Space before Uppercase
Useful to transform functions names into documentation
before:doActionBefore
after:do Action Before

Encoders/Decoders

Selection Policy is line.

Utility Example
Html Encode before:<h1>Title</h1>
after:&lt;h1&gt;Title&lt;/h1&gt
Html Decode before:&lt;h1&gt;Title&lt;/h1&gt
after:<h1>Title</h1>
Url Encode before:https://github.com
after:https%3A%2F%2Fgithub.com
Url Decode before:https%3A%2F%2Fgithub.com
after:https://github.com

Quote Change

Selection Policy is line.

Utility Example
Single To Double Quote before:find'again
after:find"again
Double To Single Quote before:find"again
after:find'again
Toggle Quote before:find"again'
after:find'again"

Slash Change

Selection Policy is line.

Utility Example
Unix To Win Slash
Converts slashes to backslashes
before:chocolate/candy
after:chocolate\candy
Win To Unix Slash
Converts backslashes to slashes
before:chocolate\candy
after:chocolate/candy
Single To Double Slash before:find\nagain
after:find\\\nagain
Double To Single Slash before:find\\\nagain
after:find\nagain

Spacing

Selection Policy is all.

Utility Example
Tab To Space
Space to Tab only works with leading spaces
Space To Tab
Space to Tab only works with leading spaces

Line Commands

Selection Policy is all.

Utility Example
Join Lines
Joins lines adding the computed expression at the end of every line
before:
red
green

after:
expr:(x\c{X0A}),
red(x0A),green(x0B)
Split Lines
Split lines by an expression. Dynamic values aren't supported
before:
red,green

after:
expr: = \c{1}
red = 1
green = 2
Indent One Space
Adds one space to the beginning of each line
Outdent One Space
Removes one space to the beginning of each line
Remove Duplicated Lines
Removes consecutive duplicated lines
Only works with already sorted lines
before:
first
second
second

after:

first
second
Remove Empty Lines before:
first

second

after:

first
second
Number
It adds a number prefix to every selected line
Trim Leading
Trim Trailing
Sort Ascending
Sort Descending
Markdown Trim Trailing
Trims trailing spaces and adds 2 trailing spaces
Break line at
Breaks lines to have a maximum of N chars, with word break option

More Text Transformations

The list of commands are:
2. rgb-hex[sentence] - Converts from #HHHHHH to rgb(dec, dec, dec) and vice-versa. It supports multiple conversions
3. tag[sentence] - Uses the 1st word of the selected text as html tag, and surrounds the remaining the text with nearest text.
The most common tags have shortcuts: bu=button d=div sp=span te=textarea in=input

Ex: d -> <div></div>       h3#hello.active.other text -> <h3 id="hello" class="active other">text</h3>  
  1. untag[function] - Removes the nearest tag
  2. Reverse[function] - Reverses the terms in a assignment or comparison.
  3. Declare JSLint Global[word] - Adds the selected id to the /*global ... */ list

Selection Policy

Most of the commands operate on selected text.
If no text is selected, a command will use:
word - The nearest word (before and after the cursor)
sentence - The nearest text until a whitespace or newline
line - The text line where the cursor is located.
all - All the editor text
function - A function determines the text to use. Ex: Quote functions will use all the text between quotes that surrounds the cursor.

Dialogs

Input fields on the dialogs support history (CTRL+UP/DOWN).

Clipboard Commands

Copy Filename, Copy Fullname - Copies the filename of the active file to the clipboard
Regnize[sentence] - Copies to clipboard the text with all the regular expression special characters slashed.
This command simplifies the usage of on find/replace dialogs.
ExtractortoIX[all] - Copies to clipboard all the text matches. One per line.

ReplacetoIX Command

This command provides a replace dialog with the following options:

  • Ignore Case
  • Word Only
  • Replace All
  • Only Selection
  • Multiline
  • Start Value (use for numbering)
  • Step Value (use for numbering)

Just like all the other commands, it only operates on the selected text(only selection mode), if no text is selected it uses all the text.

Html Report Command

This command will copy to the clipboard a list of all the id's, classes and stylesheets used on the current html file [all].

Internet Search Commands

Open Url[sentence], Web Search[word] will open an external web browser with selected text either an url(Open Url) or text(Web Search)

Function JSDoc Command

This command will create a JSDoc function skeleton of the function where the cursor is located.
Ex:

function foo(param1, param2) { }  

Will become:

/**  
* foo  
* @param {} param1  
* @param {} param2  
* @return {}  
*/  
function foo(param1, param2) { }  

Also supports privates methods:

function _foo() { }  

Will become:

/**  
* @private  
* _foo  
* @return {}  
*/  
function _foo() { }  

Recent Files Command

Displays of the all recent opened files. This list is independent of the project.

Compiler

Compiler command with execute an external compiler. Supported file formats:

  • .js6 Compiles a ECMAScript 6 into a .js file using traceur compiler.  
  • .scss Compiles a .scss into a .css file using sass compiler.  
  • .js Minifies a .js file into a .min.js file using minifier  

To prevent from creating an oversize plug-in, the compilers must be installed manually:

  • To install sass compiler, follow the instructions on this link: sass compiler
  • To install traceur, first install nodejs, and then from the shell, execute npm install -g traceur  
  • To install traceur, first install nodejs, and then from the shell, execute npm install -g uglify-js  

By default, the compile on save is not active. You can use the Options to activate it

Lorem Ipsum

Inserts the classical lorem ipsum with options on the number of paragraphs, wrap, and max characters per line.

Dialog Commands

  • Commands - Displays a dialog box with the list of the commands to be executed.
    Use {{in}}, {{inpath}}, {{infile}}, {{out}}, {{outpath}}, {{outfile}} macros

  • Commands Mapper - Allows you to define which commands are on the menu, and its associate shortcuts.

  • Options - Configuration dialog

Roadmap

These are the plans for the next versions:

  • Default shortcuts
  • Go back to the previous edit cursor positions
  • Display the compilation error on a bottom panel
  • File Extension mapper. Ex: inc->php
  • Code snippets
  • Run grunt
  • Run node scripts
  • Run python scripts
  • Clean up the code
  • Improve the User Interface
  • Improve the code documentation

Feedback

This extension was created and tested on Windows 10, Mac OS, Linux Mint,
feedback of bugs on this and other platforms are welcome
but don't forget the golden rule: Be Polite!

Copyrights

© 2016-2019 Alexandre Bento Freire

License

MIT License+uuid License

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.7.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 3.7.1
    1

Package Sidebar

Install

npm i @phoenix-plugin-registry/bracketstoix

Weekly Downloads

1

Version

3.7.1

License

SEE LICENSE IN LICENSE.txt

Unpacked Size

229 kB

Total Files

29

Last publish

Collaborators

  • ushmajit
  • core.ai