Pro Tips & Commands for Essential Software & Tools
1. Introduction of This Document
This document is used to record my personal habits of work and study. Many tools and tricks will be used to improve the efficiency.
2. Essential Software
2.1 Everything
2.1.1 Download
Everything is a software which is used to search your file quickly.
2.1.2 Tricks
2.1.2.1 Precise Research.
For example, search for “Pro Tips & Commands for Essential Software & Tools”.

2.1.2.2 Wildcard Research
For example, search for markdown file.

2.1.2.3 Search in specified directory
Add a path in front of the search content:

2.1.2.4 Combination Research
Use different keywords to research:

2.2 Drawio
3. Commonly Used Commands & Tricks
3.1 Cursor/Keywords Tricks
The tricks are not always work for different editors.
3.1.1 Basic Cursor Movement
Ctrl + Left/Right Arrow: Move cursor one word to the
left/right. (works in typora, git bash, vscode, vim)
Ctrl + Up/Down Arrow: Move current line up/down.
Home/End: Move cursor to the beginning/end of the line.
(works in typora, git bash, vscode, vim)
3.1.2 Quick Text Selection
Ctrl + D: Select current word. (works in typora,
vscode)
Ctrl + Backspace: Delete the word. (works in typora,
vscode)
Ctrl + Shift + Left/Right Arrow: Select text one word to
the left/right. (works in typora)
Shift + Left/Right Arrow: Select text one char to the of
the line. (works in typora)
Shift + Home/End: Select text to the beginning/end of
the line. (works in typora)
Ctrl + A: Select all text in the document. (works in
typora)
3.1.3 Line Operations
Alt + Up/Down Arrow: Move current line up/down. (works
in typora)
Shift + Alt + Up/Down Arrow: Duplicate current line
up/down.
Ctrl + X (with no selection): Cut or delete the entire
current line.
Ctrl + C (with no selection): Copy the entire current
line.
Ctrl + Enter: Insert a new line below the current
line.
Ctrl + Shift + Enter: Insert a new line above the
current line.
3.1.4 Hot Keys
Ctrl + F: Open the Find search box. (works in
typora)
Ctrl + H: Open the Find and Replace box. (works in
typora)
Ctrl + G: Go to a specific line number.
Ctrl + P: Quick open a file by name. (works in
typora)
Ctrl + Tab: Switch between recently opened tabs.
3.2 Hexo Command
1 | hexo new filename |
1 | hexo clean && hexo g && hexo s |
1 | cd /e/myBlog && python compress_images.py && git add . && git commit -m "update" && git push && hexo clean && hexo g -d |