Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added some VS Code Shortcuts #269

Merged
merged 5 commits into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MYSQL_Cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ MYSQL

#Tests for existence of a certain record. Returns a boolean value.
SELECT * FROM TABLE NAME WHERE EXIST (SUB QUERY);

#Inner Join selects records that have the same values in two same or distinct tables.
SELECT COLUMN(S) FROM TABLENAME1 INNER JOIN TABLENAME2 ON TABLENAME1.COLUMNAME=TABLENAME2.COLUMNAME;

Expand Down
7 changes: 7 additions & 0 deletions VSCode_CheatSheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,15 @@ VsCode:
#Jump to matching bracket
Ctrl + SHIFT + \
#Indent Line
Ctrl + ]
#Outdent Line
Ctrl + [

#Navigate editor group history
Ctrl + SHIFT + Tab

#Replace in files
Ctrl+ SHIFT + H

Loading