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
| { | |
| "swagger" : "2.0", | |
| "info" : { | |
| "version" : "1.0.2", | |
| "title" : "Sample API" | |
| }, | |
| "host" : "localhost:8002", | |
| "basePath" : "/api", | |
| "tags" : [ { | |
| "name" : "weather" |
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
| // Custom modified unity client for standalone purposes | |
| // | |
| // Orginal copiright left intact... | |
| // | |
| // Copyright 2015 Google Inc. All rights reserved. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // |
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
| // ==UserScript== | |
| // @name Hide these videos layout fix | |
| // @namespace Mars | |
| // @description Fixes the missalignment of the "Hide these videos" on the subscription page. | |
| // @version 1 | |
| // @include http*://*youtube.com* | |
| // @grant GM_addStyle | |
| // ==/UserScript== |
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
Show hidden characters
| [ | |
| /*Additional sublime mouse gestures*/ | |
| { "button": "button1", "count": 1, "modifiers": ["button2"], "command": "close"}, | |
| { "button": "button3", "count": 1, "modifiers": ["button2"], "command": "reopen_last_file"} | |
| ] |
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
| [ | |
| /* Additional File Commands */ | |
| { "caption": "File: Open", "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"} }, | |
| { "caption": "File: Close", "command": "close" } | |
| /* Hint: Use sublime.log_commands(True) to log each command in the console */ | |
| /*For "File: Rename" use the file rename package https://github.com/brianlow/FileRename */ | |
| ] |
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
| [ | |
| /* General hotkeys */ | |
| { "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, | |
| { "keys": ["ctrl+shift+e"], "command": "show_panel", "args": {"panel": "find_in_files"} }, | |
| { "keys": ["ctrl+shift+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
| { "keys": ["alt+shift+r"], "command": "find_under_expand" }, | |
| { "keys": ["ctrl+."], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
| { "keys": ["f12"], "command": "htmlprettify"}, | |
| /* Commenting */ |