vim-jsx-utils icon indicating copy to clipboard operation
vim-jsx-utils copied to clipboard

Plugin with some utilities (like extract partial render, rename tag, select self close tags) to folks who work with JSX on Vim.

vim-jsx-utils

Plugin with some utilities to folks who work with JSX on Vim.

:warning: This plugin only expose a set of functions. You need create your own mappings to this, like:

nnoremap <leader>ja :call JSXEncloseReturn()<CR>
nnoremap <leader>ji :call JSXEachAttributeInLine()<CR>
nnoremap <leader>je :call JSXExtractPartialPrompt()<CR>
nnoremap <leader>jc :call JSXChangeTagPrompt()<CR>
nnoremap vat :call JSXSelectTag()<CR>

:warning: All functions must be invoked on the first component line.

Installation

You can install this plugin with Pathogen, Vundle and other plugin loaders.

Functions

JSXSelectTag

Select the whole tag, like vat, but with a little improvement to select self-closing tags.

JSXEncloseReturn

Put the current tag on a return statement with parenthesis.

JSXEachAttributeInLine

Put each tag attribute's on its own line to better readability.

JSXExtractPartialPrompt

:warning: Only ES6 classes

Extract some tag on its own method on a ES6 class.

JSXChangeTagPrompt

Change the tag name


Samuel Simões ~ @samuelsimoes ~ Blog