All Projects → ehamiter → Githubinator

ehamiter / Githubinator

Licence: mit
Sublime Text plugin that shows selected text on remote GitHub or Bitbucket repo

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Githubinator

Javascript Completions
JavaScript Completions for sublime text. It helps you to write your scripts more quickly with hints and completions.
Stars: ✭ 341 (+152.59%)
Mutual labels:  sublime-text, sublime-text-3
Javascriptenhancements
JavaScript Enhancements is a plugin for Sublime Text 3. It offers not only a smart javascript autocomplete but also a lot of features about creating, developing and managing javascript projects (real-time errors, code refactoring, etc.).
Stars: ✭ 592 (+338.52%)
Mutual labels:  sublime-text, sublime-text-3
Chromerepl
A Sublime Text plugin to execute JavaScript in Google Chrome
Stars: ✭ 347 (+157.04%)
Mutual labels:  sublime-text, sublime-text-3
CodeChampion
Plays epic sound clips when you write epic code on sublime Text!
Stars: ✭ 30 (-77.78%)
Mutual labels:  sublime-text, sublime-text-3
Pythonimproved
The best Python language definition for Sublime Text - ever. Includes full support for Unicode, as well as both Python 2 and Python 3 syntax. Check out the Neon Color Scheme for highlighting.
Stars: ✭ 95 (-29.63%)
Mutual labels:  sublime-text, sublime-text-3
eRCaGuy dotfiles
.bashrc file, terminal prompt that shows current git branch, Arduino setup, Eclipse setup, git diff with line numbers, helpful scripts, improved Linux productivity, etc.
Stars: ✭ 84 (-37.78%)
Mutual labels:  sublime-text, sublime-text-3
Sublime zk
A SublimeText3 package featuring ID based wiki style links, and #tags, intended for zettelkasten method users. Loaded with tons of features like inline image display, sophisticated tag search, note transclusion features, support for note templates, bibliography support, support for multiple panes, etc. to make working in your Zettelkasten a joy 😄.
Stars: ✭ 408 (+202.22%)
Mutual labels:  sublime-text, sublime-text-3
Nineties
💾 Colors for World Wide Web pioneers
Stars: ✭ 16 (-88.15%)
Mutual labels:  sublime-text, sublime-text-3
Consolewrap
This plugin helps you to work easily with log statements
Stars: ✭ 75 (-44.44%)
Mutual labels:  sublime-text, sublime-text-3
Sublime Text Plugins For Frontend Web Development
📝 Collection of plugins for Frontend Web Development
Stars: ✭ 1,127 (+734.81%)
Mutual labels:  sublime-text, sublime-text-3
Productive Sublime Snippets Ruby
Ruby Snippets for Sublime Text
Stars: ✭ 109 (-19.26%)
Mutual labels:  sublime-text, sublime-text-3
Wsl Proxy
WSL proxy files for editor/linux interop
Stars: ✭ 134 (-0.74%)
Mutual labels:  sublime-text, sublime-text-3
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (-88.89%)
Mutual labels:  sublime-text, sublime-text-3
Coffeescript Sublime Plugin
Syntax highlighting and checking, commands, shortcuts, snippets, compilation and more.
Stars: ✭ 296 (+119.26%)
Mutual labels:  sublime-text, sublime-text-3
sublime-patcher
Bash script for patching/cracking Sublime Text on Linux
Stars: ✭ 20 (-85.19%)
Mutual labels:  sublime-text, sublime-text-3
Ayu
🎨🖌 Modern Sublime Text theme
Stars: ✭ 3,933 (+2813.33%)
Mutual labels:  sublime-text, sublime-text-3
network tech
Cisco config syntax and snippets for Sublime Text
Stars: ✭ 82 (-39.26%)
Mutual labels:  sublime-text, sublime-text-3
sublime-text
Subime Text 相关资源收集整理
Stars: ✭ 62 (-54.07%)
Mutual labels:  sublime-text, sublime-text-3
Sublimeallautocomplete
Extend Sublime autocompletion to find matches in all open files of the current window
Stars: ✭ 906 (+571.11%)
Mutual labels:  sublime-text, sublime-text-3
Carbonsublime
🚀 A Sublime Text 3 Plugin for Carbon. (https://carbon.now.sh)
Stars: ✭ 104 (-22.96%)
Mutual labels:  sublime-text, sublime-text-3

GitHubinator*

*With regards to Dr. Heinz Doofenshmirtz

This will allow you to select text in a Sublime Text file, and see the highlighted lines on GitHub's remote repo, if one exists.

Screenshot

Installation

If you use Package Control, just install it from there. If not:

Clone this repo to your Sublime Text Packages folder (ST3 example shown below):

cd ~/"Library/Application Support/Sublime Text 3/Packages/"
git clone https://github.com/ehamiter/GitHubinator.git

The plugin should be picked up automatically. If not, restart Sublime Text.

Configuration

The defaults should work for most setups, but if you have a different remote name or use GitHub Enterprise, you can configure remote and host in the Githubinator.sublime-settings file:

{
  "default_remote": "origin",
  "default_host": "github.com"
}

To change the branch name, edit Default.sublime-commands.

For example, to change the branch name from master to main, edit the following as such:

From:

  {
    "caption": "GitHubinator Blame on Master",
    "command": "githubinator",
    "args": { "permalink": false, "mode": "blame", "branch": "master" }
  },

To:

  {
    "caption": "GitHubinator Blame on Main",
    "command": "githubinator",
    "args": { "permalink": false, "mode": "blame", "branch": "main" }
  },

Usage

Select some text. Activate the context menu and select "GitHubinator" or by keypress (⌘\ by default, configurable in .sublime-keymap file).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].