Quantcast
Channel: Dave Stewart IO » OtherDave Stewart IO
Viewing all articles
Browse latest Browse all 3

Github & Bitbucket indentation fix

$
0
0

Overview

Unfortunately, GitHub and BitBucket's indenting for source code defaults to the browser's 8-space default, so alignment and readability suffer. Both companies allow you to use a ?ts=n query string parameter, but it's not persistent or language-specific.

After waiting 2 years for BitBucket to come up with a better solution, I've instead written a small Chrome Tampermonkey script to do the job for me. It:

  • Works on GitHub, BitBucket and Gist
  • Supports per-language indentation
  • Is extensible (both language, and site)
  • Requires a Chrome plugin

Tampermonkey is Chrome's equivalent of Greasemonkey; a browser extension that allows you to execute custom domain-specific scripts on websites you visit.

Setup

The script requires Tampermonkey to run, so it can inject new styles into the page.

Getting things up and running should take all of 2 minutes:

  1. Install the Chrome extension Tampermonkey
  2. Once installed, click the new icon in the toolbar, then "Add a new script…"
  3. Grab the Gist and paste it into the page, replacing the existing content
  4. To modify indentation settings per language, update the sizes hash in JavaScript
  5. Save the script by clicking the save icon or pressing CTRL+S

Finally, test it out by navigating to any GitHub or BitBucket source code:

github-corrected-indent

You might notice a slight delay in the update on large files or full commit views, but for normal, single files, it should be instant.

If you're curious as to how it works, check the final <style> element in the head to see what gets injected.

Download


Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images