view four-spaces-tabs.js @ 7:a33ed4ee7fa6

(none)
author Edho Arief <me@myconan.net>
date Wed, 08 Jul 2015 07:26:08 +0000
parents
children 3ba8f54d018b
line wrap: on
line source

// ==UserScript==
// @name         Four spaces tabs
// @namespace    https://myconan.net
// @version      1.0
// @description  All the tabs
// @author       nanaya
// @match        *
// @grant        none
// ==/UserScript==

;(function() {
  document.body.style.tabSize = 4;
}).call();