Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Example Script
// @match https://site.com/wildpath*
// @match https://site.com/specificpath
// ==/UserScript==
(function ($) {
/**
* Processes all successful AJAX calls
* @param {Object} event
@Asuza
Asuza / Default (Linux).sublime-keymap
Last active December 6, 2015 19:01
Sublime Text 3 keyboard shortcut config for xiwi usage through crouton
[
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+alt+home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["super+pagedown"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["super+pageup"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["alt+pagedown"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["alt+pageup"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+alt+end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["alt+delete"], "command": "right_delete" },