This file contains hidden or 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
| /*! ryan.css v1.1.0 */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| html{background: none;height: 100%;} | |
| ::selection{background:#78a8a8;color:#f7f3e7;text-shadow:none;} | |
| ::-moz-selection{background:#78a8a8;color:#f7f3e7;text-shadow:none;} | |
| ::-webkit-selection{background:#78a8a8;color:#f7f3e7;text-shadow:none;} |
This file contains hidden or 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
| /************************************************************** | |
| author: linkarys | |
| description: framework of javascript | |
| date begin: 2012-9-8 | |
| **************************************************************/ | |
| /* ============================================================================= | |
| Shortcuts | |
| ========================================================================== */ |
This file contains hidden or 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 | |
| import webbrowser | |
| class openBrowser(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| url = self.view.file_name(); | |
| webbrowser.open_new(url) |
This file contains hidden or 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
| AdvanceNewFile | |
| Netus Fetch | |
| Gist | |
| SulimetLinter | |
| ClipBoard History |
This file contains hidden or 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
| [ | |
| { "keys": ["alt+x"], "command": "open_browser" }, | |
| { "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" }, | |
| { "keys": ["alt+shift+j"], "command": "move_to", "args": {"to": "bol"}}, | |
| { "keys": ["alt+shift+k"], "command": "move_to", "args": {"to": "eol"}}, | |
| { "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}}, | |
| { "keys": ["ctrl+alt+f"], "command": "pep8_autoformat" }, | |
| { "keys": ["alt+shift+;"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewlinewithsemi.sublime-macro" } }, | |
| { "keys": ["alt+shift+l"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewline.sublime-macro" } }, | |
| { "keys": ["ctrl+shift+l"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewlinewithcolon.sublime-macro" } }, |
This file contains hidden or 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
| "jquery": "http://code.jquery.com/jquery.min.js", | |
| "reset": "http://meyerweb.com/eric/tools/css/reset/reset.css", | |
| "prefixfree": "https://raw.github.com/LeaVerou/prefixfree/gh-pages/prefixfree.min.js", | |
| "normalize": "https://raw.github.com/necolas/normalize.css/master/normalize.css" |
This file contains hidden or 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
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", | |
| "theme": "Soda Dark.sublime-theme", | |
| "word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?_", | |
| "font_face": "Comic Sans MS", | |
| "font_face": "STXIhei Bold", | |
| "font_size": 11.2, | |
| "ignored_packages": | |
| [ | |
| "ASP", |
This file contains hidden or 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
| <!DOCTYPE HTML> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href="css/tyles.css"> | |
| <title>HTML</title> | |
| </head> | |
| <body> |
This file contains hidden or 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
| <cfset tabChr = chr(9)> | |
| <cfset newlineChr = chr(13) & chr(10)> | |
| tabChar = chr(9); | |
| newlineChr = chr(13) & chr(10); |
This file contains hidden or 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
| Search Forward F3 | |
| Search Backwards Shift + F3 | |
| Select All Matches Alt + F3Searching | |
| Toggle Regular Expressions Alt + R | |
| Toggle Case Sensitivity Alt + C | |
| Toggle Exact Match Alt + W | |
| Find Next Enter | |
| Find Previous Shift + Enter |
OlderNewer