-
The AngularJS GIT commit guidelines: http://goo.gl/Ar4UHA
-
A detailed explanation can be found: http://goo.gl/iZth0R
-
Below is my slightly edited version; view in my Gist: https://goo.gl/MEjIkF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime, sublime_plugin | |
class CopyLine(): | |
""" | |
A parent class for the CopyLineCommand and CutLineCommand classes. | |
""" | |
def copy_line(self, **kwargs): | |
""" | |
Copies the cursor line, or all the lines which a multi-line selection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A list of all the syntaxes from Sublime Text v3114: | |
Packages/ActionScript/ActionScript.sublime-syntax | |
Packages/AppleScript/AppleScript.sublime-syntax | |
Packages/ASP/ASP.sublime-syntax | |
Packages/ASP/HTML-ASP.sublime-syntax | |
Packages/Batch File/Batch File.sublime-syntax | |
Packages/C#/Build.sublime-syntax | |
Packages/C#/C#.sublime-syntax | |
Packages/C++/C.sublime-syntax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ST Command: quick_panel_bug_demo | |
# | |
# Run from the console with the command: | |
# window.run_command("quick_panel_bug_demo") | |
# | |
# Or assign it to a key binding using: | |
# { "keys": ["ctrl+whatever"], "command": "quick_panel_bug_demo" } | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sort_view_items(self): | |
cs = self.settings.case_sensitive | |
if self.settings.sort_by_file_name: | |
self.view_items.sort(key = lambda vi: (vi.name if cs else vi.name.lower(), vi.group, vi.tab)) | |
elif self.settings.sort_by_folder: | |
self.view_items.sort(key = lambda vi: (vi.folder, vi.name if cs else vi.name.lower())) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sort_view_items(self): | |
cs = self.settings.case_sensitive | |
if self.settings.sort_by_file_name: | |
sk = lambda vi: (vi.name if cs else vi.name.lower(), vi.group, vi.tab) | |
elif self.settings.sort_by_folder: | |
sk = lambda vi: (vi.folder, vi.name if cs else vi.name.lower()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// | |
// Modifications to theme: predawn-DEV.sublime-theme | |
// Location: Packages/User/predawn-DEV.sublime-theme | |
// See: Theme Customisation @ https://goo.gl/dTkjuX | |
// | |
// Note that font sizes can be fractions, e.g. 11.5 | |
// | |
[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- My modifications to the Boxy Tomorrow.tmTheme colour scheme. --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Stan Made</string> | |
<key>colorSpaceName</key> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Modifications to theme: Boxy Tomorrow.sublime-theme | |
// Location: Packages/User/Boxy Tomorrow.sublime-theme | |
// | |
// The settings below override the theme and its settings | |
// and will be the last values loaded by Sublime Text. | |
// | |
// Note that font sizes can be fractions, e.g. 11.5. | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// > BOXY TOMORROW | |
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
// Definitely, your next theme for Sublime Text 3 | |
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
[ | |
// | |
// >> Autocomplete | |
// =========================================================================== | |
// Autocomplete settings and behavior |
OlderNewer