ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Extract Text to Laravel Blade View

Extract selected text to laravel blade view

Details

Installs

  • Total 14K
  • Win 11K
  • Mac 1K
  • Linux 2K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 1 2 1 0 0 0 1 2 0 0 1 1 0 1 1 2 0 0 1 0 0 1 1 1 1 2 1 2 0 3 0 1 0 0 1 1 0 1 0 0 1 1 0 2 2
Mac 0 0 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 1 0 0 0 0 0
Linux 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Extract Text to Laravel Blade View

Build Status Build status

This plugin for Sublime Text 3 allows you to extract the selected text into a new or existing laravel blade views with the @include sentence and the appropriate path.

💾 Installation

Package Control

It is highly recommended to install Extract Text to Laravel Blade View with Package Control.

  1. Install Package Control if you haven't yet.
  2. Open the command palette (Ctrl+Shift+P for Windows/Linux, Cmd+Shift+P for Mac OS)
  3. Search for Package Control: Install Package and hit Enter.
  4. Type Extract Text to Laravel Blade View and press Enter to install it.

Manual Installation

You can clone this repository into your Sublime Text 3/Packages

git clone https://github.com/MohannadNaj/sublime-extract-to-blade
Mac OS
cd ~/Library/Application Support/Sublime Text 3/Packages/
git clone git://github.com/MohannadNaj/sublime-extract-to-blade.git
Linux
cd ~/.config/sublime-text-3/Packages
git clone git://github.com/MohannadNaj/sublime-extract-to-blade.git
Windows
cd "%APPDATA%\Sublime Text 3\Packages"
git clone git://github.com/MohannadNaj/sublime-extract-to-blade.git

👉 The git command must be available on the command line.

👉 You may need to add the directory containing git.exe to your PATH environment variable.

Usage

  • While on a Laravel Blade View, Select some text
  • open the Command Palette (Ctrl+Shift+P for Windows/Linux, Cmd+Shift+P for Mac OS), and look for “Extract: Move selection to blade view ..”.

    Alternatively, you can set a key map for this step. see Keymap

  • Enter the blade path for the new blade view (e.g: welcome.services)

    you can use relative blade paths also if it's enabled. see Options

The plugin will create or append the extracted text to the newly created blade view, and insert @include statement in the text source file. The plugin will look for the resources/views/ directory to resolve the entered path.

Options

Set your options by navigating to Preferences > Settings.

extract_to_blade_save_last_path

default: true “ js { "extract_to_blade_save_last_path”: true }

By enabling this option, the plugin will remember how you located the directory of the blade file the last time you extracted text, and will set the next input to the same directory.

If you extracted a portion of the text to `welcome.about`, the next time the input will be ready for you by default: `welcome.`.

### extract_to_blade_relative_path
_default: false_
``` js
{
    "extract_to_blade_relative_path": false
}

By enabling this option, the plugin will build the blade paths relatively to the text source file path.

If you extracted text from resources/views/layouts/app.blade.php and typed: header, it will create the file on resources/views/layouts/, so the blade path for it will be: @include('layouts.header').

Disable this if you used to write the full blade path at your include statements.

extract_to_blade_include_sentence

default: @include('%s') “ js { "extract_to_blade_include_sentence”: “@include('%s')” }

The sentence will be used for entering the resolved blade path.

Change this if you prefer the double quotes over the apostrophe for example.
``` js
{
    // double quotes + 4 lines after!!
    "extract_to_blade_include_sentence": "@include(\"%s\")\n\n\n\n"    
}

Keymap

You can set the keymap for extracting the selected text to a Laravel blade view from Preferences > Key Bindings. Assuming you want Ctrl+Alt+E as the command shortcut: “ js [ // windows { "keys”: [“ctrl+alt+e”], “command”: “extract_to_blade”},

// Linux and Mac OS
{ "keys": ["super+alt+e"], "command": "extract_to_blade"},

]

## Credits

- The forked [Extract Text to File](https://github.com/dreki/sublime-extract-to-file) plugin
- The [Installation](#installation) part on this README was modified from [GitGutter's README file](https://github.com/jisaacks/GitGutter/blob/master/README.md)