{"id":17982233,"url":"https://github.com/idered/vscode-workshop","last_synced_at":"2025-04-04T01:46:49.432Z","repository":{"id":143484968,"uuid":"220627682","full_name":"Idered/vscode-workshop","owner":"Idered","description":null,"archived":false,"fork":false,"pushed_at":"2019-11-13T19:54:56.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T16:06:04.775Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Idered.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-09T10:44:10.000Z","updated_at":"2019-12-30T18:55:48.000Z","dependencies_parsed_at":"2023-07-09T08:00:58.638Z","dependency_job_id":null,"html_url":"https://github.com/Idered/vscode-workshop","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Idered%2Fvscode-workshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Idered%2Fvscode-workshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Idered%2Fvscode-workshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Idered%2Fvscode-workshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Idered","download_url":"https://codeload.github.com/Idered/vscode-workshop/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247107834,"owners_count":20884797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-29T18:13:31.911Z","updated_at":"2025-04-04T01:46:49.416Z","avatar_url":"https://github.com/Idered.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"## New file\n\nExtension: https://marketplace.visualstudio.com/items?itemName=fayras.simple-new-file\nKeybinding:\n\n```json\n[\n  {\n    \"key\": \"ctrl+n\",\n    \"command\": \"extension.simpleNewFile\",\n    \"when\": \"editorTextFocus\"\n  }\n]\n```\n\n## View\n\n| Description              | Windows       | Mac           | Is custom |\n| ------------------------ | ------------- | ------------- | --------- |\n| Show file explorer       | ctrl+shift+e  | cmd+shift+e   |           |\n| Show extensions panel    | ctrl+shift+x  | cmd+shift+x   |           |\n| Show global search panel | ctrl+shift+f  | cmd+shift+f   |           |\n| Hide sidebar             | ctrl+k ctrl+b | ctrl+k ctrl+b | True      |\n\nKeybinding:\n\n```json\n[\n  {\n    \"key\": \"ctrl+k ctrl+b\",\n    \"command\": \"workbench.action.toggleSidebarVisibility\"\n  }\n]\n```\n\n## Selection\n\n| Description                 | Windows          | Mac                | Is custom |\n| --------------------------- | ---------------- | ------------------ | --------- |\n| Jump by word                | ctrl+right/left  | option+left/right  |           |\n| Select word on the left     | ctrl+shift+left  | option+shift+left  |           |\n| Select word on the right    | ctrl+shift+right | option+shift+right |           |\n| Move line up                | alt+up           | option+up          |           |\n| Move line down              | alt+down         | option+down        |           |\n| Duplicate line up           | alt+shift+up     | option+shift+up    |           |\n| Duplicate line down         | alt++shift+down  | option+shift+down  |           |\n| Fast scroll                 | alt+scroll       | option+scroll      |           |\n| Expand selection scope      | alt+shift+right  | ctrl+shift+right   |           |\n| Narrow selection scope      | alt+shift+left   | ctrl+shift+left    |           |\n| Open recent workspace       | ctrl+t           | ctrl+r             |           |\n| Select to the start of line | fn+shift+left    | cmd+shift+left     |           |\n| Select to the end of line   | fn+shift+right   | cmd+shift+right    |           |\n| Open symbols list           | ctrl+shift+o     | cmd+shift+o        |           |\n| Select word                 | ctrl+d           | cmd+d              |           |\n| Omit current word selection | ctrl+k ctrl+d    | cmd+k cmd+k        |           |\n| Select all occurrences      | ctrl+shift+l     | cmd+shift+l        |           |\n| Remove current line         | ctrl+shift+k     | cmd+shift+k        |           |\n| Focus breadcrumbs           | ctrl+;           | cmd+;              | True      |\n| Increment number by 1       | ctrl+up          | cmd+up             | True      |\n| Decrement number by 1       | ctrl+down        | cmd+down           | True      |\n| Go to last edit location    | shift+space      | shift+space        | True      |\n\nKeybindings:\n\n```json\n[\n  {\n    \"key\": \"shift+space\",\n    \"command\": \"workbench.action.navigateToLastEditLocation\"\n  },\n  {\n    \"key\": \"ctrl+oem_1\",\n    \"command\": \"breadcrumbs.focusAndSelect\"\n  },\n  {\n    \"key\": \"ctrl+up\",\n    \"command\": \"editor.emmet.action.incrementNumberByOne\"\n  },\n  {\n    \"key\": \"ctrl+down\",\n    \"command\": \"editor.emmet.action.decrementNumberByOne\"\n  }\n]\n```\n\n## Terminal\n\n| Description            | Windows                    | Mac                        | Is custom |\n| ---------------------- | -------------------------- | -------------------------- | --------- |\n| Clear terminal         | ctrl+l                     | ctrl+l                     |           |\n| Search recent commands | ctrl+r                     | ctrl+r                     |           |\n| Cancel input           | ctrl+c                     | ctrl+c                     |           |\n| Jump by word           | ctrl+left/right            | option+left/right          |           |\n| Close terminal tab     | ctrl+w                     | ctrl+w                     | True      |\n| New Terminal tab       | ctrl+t                     | ctrl+t                     | True      |\n| Toggle terminal        | alt+\\`                     | option+\\`                  | True      |\n| Focus next terminal    | alt+right or ctrl+tab      | alt+right or ctrl+tab      | True      |\n| Focus prev terminal    | alt+left or ctrl+shift+tab | alt+left or ctrl+shift+tab | True      |\n\n## Git\n\nExtension: https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens\n\n| Description   | Windows          | Mac              | Is custom |\n| ------------- | ---------------- | ---------------- | --------- |\n| Pull          | alt+enter        | option+enter     | True      |\n| Push          | ctrl+shift+enter | ctrl+shift+enter | True      |\n| Commit        | ctrl+enter       | ctrl+enter       | True      |\n| Change branch | ctrl+b           | ctrl+b           | True      |\n\n## Install direnv\n\n1. `/usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"`\n2. `brew install direnv`\n3. `echo \"source ~/.bashrc\" \u003e\u003e ~/.profile`\n4. `source ~/.bashrc`\n\n## Install nvs\n\n1. `export NVS_HOME=\"$HOME/.nvs\"`\n2. `git clone https://github.com/jasongin/nvs \"$NVS_HOME\"`\n3. `. \"$NVS_HOME/nvs.sh\" install`\n4. `nvs add node/lts`\n5. `nvs link lts`\n\n## Install lsd\n\n1. `brew install lsd`\n2. `brew tap homebrew/cask-fonts`\n3. `brew cask install font-hack-nerd-font`\n4. Add to VS Code settings: `\"terminal.integrated.fontFamily\": \"Hack Nerd Font\"`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidered%2Fvscode-workshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidered%2Fvscode-workshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidered%2Fvscode-workshop/lists"}