-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Edward Fitz Abucay <ffimnsr@gmail.com>
- Loading branch information
Showing
5 changed files
with
95 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
- bandwhich | ||
- bat | ||
- bottom | ||
- difftastic | ||
- dust | ||
- fd | ||
- fzf | ||
- gnupg | ||
- grex | ||
- hexyl | ||
- htop | ||
- hurl | ||
- hyperfine | ||
- iproute2mac | ||
- jq | ||
- neovim | ||
- nmap | ||
- oha | ||
- ollama | ||
- pinentry-mac | ||
- python-tk@3.12 | ||
- rclone | ||
- ripgrep | ||
- sd | ||
- socat | ||
- starship | ||
- tmux | ||
- yt-dlp | ||
- zoxide | ||
- zplug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
- `!$` or `!:$` - the last argument | ||
- `!^` or `!:^` - first argument (after the program/script/built-in command) from previous command | ||
- `!*` - all arguments from the previous command | ||
- `!!` - previous command including arguments | ||
- `!n` - command number `n` from **history**. | ||
- `!str` - most recent command **starting** with `str` | ||
- `!?str[?]` - most recent command **containing** `str` | ||
- `!!:s/find/replace[/:G]` - previous (last) command, substitute `find` with `replace` | ||
- `!!:1` - get the previous command first argument | ||
- `!!:1-2` - get the previous command first and second argument | ||
- `!!:0` - get the previous command only | ||
- `!#` - get **current** command line typed in so far (duplicate the current command) | ||
|
||
Note: | ||
For word designators a `:` usually separates the event specification from the word designator. It may be omitted only if the word designator begins with a `^`, `$`, `*`, `-`, or `%`. |