Compare commits

...

4 Commits

Author SHA1 Message Date
Tayyab
882da909b7 Merge 0de5e8fef1 into d143c60246 2023-12-29 06:50:37 -08:00
Julien Le Coupanec
d143c60246 Merge pull request #354 from RomjanHossain/patch-1
swap current line with previous
2023-12-29 15:35:14 +01:00
Romjan D. Hossain
44371217a9 swap current line with previous
it should be `ddkP` instead of `ddkp`
2023-12-24 11:53:04 +06:00
Tayyab-R
0de5e8fef1 added shortcuts to send current session to the background and get them back
added what is 'f-string' and one example
2023-07-17 21:49:39 +05:00
3 changed files with 16 additions and 4 deletions

View File

@@ -47,9 +47,10 @@ CTRL+X then ) # finish recording 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+A then D # logout from screen but don't kill it, if any command exist, it will continue
BACKSPACE # deletes one character backward
DELETE # deletes one character under cursor
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
DELETE # deletes one character under cursor
history # shows command line history
!! # repeats the last command

View File

@@ -380,3 +380,14 @@ function_name()
* We need not to specify the return type of the function.
* Functions by default return `None`
* 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.")
```

View File

@@ -105,7 +105,7 @@ gu$ make lowercase until end of line
<< indent line one column to left
== auto-indent current line
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
:r [name] insert the file [name] below the cursor.
:r !{cmd} execute {cmd} and insert its standard output below the cursor.