Vijay Rana
Vijay Rana

Reputation: 1079

select text between two line breaks in sublime text

I was wondering if there is any shortcut key for sublime text(3) or plugin for selecting all the text between two line breaks. For example:

    $search_box = Input::get('search_box');
    $city_code  = Input::get('city_code');
    $check_in   = Input::get('check_in');
    $check_out  = Input::get('check_out');

    $noofrooms  = Input::get('noofrooms');
    $adultguest = Input::get('adultguest');
    $childguest = Input::get('childguest');
    $childage   = Input::get('childage');

    Session::put('adultguest', $adultguest);
    Session::put('childguest', $childguest);
    Session::put('childage', $childage);

In above code, I want to select all the text from$noofrooms = Input::get('noofrooms'); to Input::get('childage'); with shortcut key at once. Is there any?

Upvotes: 1

Views: 173

Answers (1)

Mr.F
Mr.F

Reputation: 936

Add the following line to Preferences > Key Bindings - User

  { "keys": ["alt+p"], "command": "expand_selection_to_paragraph" }

(You can change the "alt+p" to whatever key combo you want)

Upvotes: 1

Related Questions