mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-30 07:08:01 -08:00
Compare commits
4 Commits
761e562998
...
882da909b7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
882da909b7 | ||
|
|
d143c60246 | ||
|
|
44371217a9 | ||
|
|
0de5e8fef1 |
@@ -47,7 +47,8 @@ CTRL+X then ) # finish recording keyboard macro
|
|||||||
CTRL+X then E # recall last recorded keyboard macro
|
CTRL+X then E # recall last recorded keyboard macro
|
||||||
CTRL+X then CTRL+E # invoke text editor (specified by $EDITOR) on current command line then execute resultes as shell commands
|
CTRL+X then CTRL+E # invoke text editor (specified by $EDITOR) on current command line then execute resultes as shell commands
|
||||||
CTRL+A then D # logout from screen but don't kill it, if any command exist, it will continue
|
CTRL+A then D # logout from screen but don't kill it, if any command exist, it will continue
|
||||||
|
CTRL+T then Z # Minimizes the current session or sends the current session to the background.
|
||||||
|
fg(foreground) # Maxmizes the current session
|
||||||
BACKSPACE # deletes one character backward
|
BACKSPACE # deletes one character backward
|
||||||
DELETE # deletes one character under cursor
|
DELETE # deletes one character under cursor
|
||||||
|
|
||||||
|
|||||||
@@ -380,3 +380,14 @@ function_name()
|
|||||||
* We need not to specify the return type of the function.
|
* We need not to specify the return type of the function.
|
||||||
* Functions by default return `None`
|
* Functions by default return `None`
|
||||||
* We can return any datatype.
|
* We can return any datatype.
|
||||||
|
### f strings
|
||||||
|
* Short of "formatted string".
|
||||||
|
* Allow us to to embed expressions inside string literals.
|
||||||
|
* f-strings are denoted by "f" or "F" prefix before the string
|
||||||
|
* Expressions are closed by curly braces '{}' with the f-string
|
||||||
|
```
|
||||||
|
name = "Alice"
|
||||||
|
print(f"Hello, I am {name} and I am a programmer.")
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ gu$ make lowercase until end of line
|
|||||||
<< indent line one column to left
|
<< indent line one column to left
|
||||||
== auto-indent current line
|
== auto-indent current line
|
||||||
ddp swap current line with next
|
ddp swap current line with next
|
||||||
ddkp swap current line with previous
|
ddkP swap current line with previous
|
||||||
:%retab fix spaces / tabs issues in whole file
|
:%retab fix spaces / tabs issues in whole file
|
||||||
:r [name] insert the file [name] below the cursor.
|
:r [name] insert the file [name] below the cursor.
|
||||||
:r !{cmd} execute {cmd} and insert its standard output below the cursor.
|
:r !{cmd} execute {cmd} and insert its standard output below the cursor.
|
||||||
|
|||||||
Reference in New Issue
Block a user