Skip to content

Instantly share code, notes, and snippets.

@vienhoang
vienhoang / gist:dcd32bdcf866e6208c2c
Last active August 29, 2015 14:04
Sublime: Useful Shortcuts (PC)

Sublime Text 2 – Useful Shortcuts (PC)

Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.

Editing

Ctrl+C copy current line (if no selection)
Ctrl+X cut current line (if no selection)
Ctrl+⇧+K delete line
Ctrl+↩ insert line after
@vienhoang
vienhoang / RouteClass.php
Last active August 29, 2015 14:00 — forked from dwightwatson/RouteClass.php
Laravel: Make the Controller title a little bit prettier
<?php
public function routeClass($separator = ' - ')
{
$routeArray = Str::parseCallback(Route::currentRouteAction(), null);
if (last($routeArray) != null) {
// Remove 'controller' from the controller name.
$controller = str_replace('Controller', '', class_basename(head($routeArray)));