mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-26 01:57:26 +08:00
Compare commits
4 Commits
9f9d3b7d24
...
aca048814b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aca048814b | ||
|
|
a24e91908a | ||
|
|
221eb9b90a | ||
|
|
a4f08ad238 |
@ -47,7 +47,7 @@ fi
|
|||||||
# enable diff color if possible.
|
# enable diff color if possible.
|
||||||
if command diff --color /dev/null /dev/null &>/dev/null; then
|
if command diff --color /dev/null /dev/null &>/dev/null; then
|
||||||
function color-diff {
|
function color-diff {
|
||||||
diff --color $@
|
command diff --color $@
|
||||||
}
|
}
|
||||||
alias diff="color-diff"
|
alias diff="color-diff"
|
||||||
compdef _diff color-diff # compdef is already loaded by this point
|
compdef _diff color-diff # compdef is already loaded by this point
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# extract plugin
|
# extract plugin
|
||||||
|
|
||||||
This plugin defines a function called `extract` that extracts the archive file
|
This plugin defines a function called `extract` that extracts the archive file you pass it, and it supports a
|
||||||
you pass it, and it supports a wide variety of archive filetypes.
|
wide variety of archive filetypes.
|
||||||
|
|
||||||
This way you don't have to know what specific command extracts a file, you just
|
This way you don't have to know what specific command extracts a file, you just do `extract <filename>` and
|
||||||
do `extract <filename>` and the function takes care of the rest.
|
the function takes care of the rest.
|
||||||
|
|
||||||
To use it, add `extract` to the plugins array in your zshrc file:
|
To use it, add `extract` to the plugins array in your zshrc file:
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ plugins=(... extract)
|
|||||||
## Supported file extensions
|
## Supported file extensions
|
||||||
|
|
||||||
| Extension | Description |
|
| Extension | Description |
|
||||||
|:------------------|:-------------------------------------|
|
| :---------------- | :----------------------------------- |
|
||||||
| `7z` | 7zip file |
|
| `7z` | 7zip file |
|
||||||
| `Z` | Z archive (LZW) |
|
| `Z` | Z archive (LZW) |
|
||||||
| `apk` | Android app file |
|
| `apk` | Android app file |
|
||||||
@ -32,6 +32,7 @@ plugins=(... extract)
|
|||||||
| `lrz` | LRZ archive |
|
| `lrz` | LRZ archive |
|
||||||
| `lz4` | LZ4 archive |
|
| `lz4` | LZ4 archive |
|
||||||
| `lzma` | LZMA archive |
|
| `lzma` | LZMA archive |
|
||||||
|
| `obscpio` | cpio archive used on OBS |
|
||||||
| `rar` | WinRAR archive |
|
| `rar` | WinRAR archive |
|
||||||
| `rpm` | RPM package |
|
| `rpm` | RPM package |
|
||||||
| `sublime-package` | Sublime Text package |
|
| `sublime-package` | Sublime Text package |
|
||||||
@ -57,5 +58,5 @@ plugins=(... extract)
|
|||||||
| `zst` | Zstandard file (zstd) |
|
| `zst` | Zstandard file (zstd) |
|
||||||
| `zpaq` | Zpaq file |
|
| `zpaq` | Zpaq file |
|
||||||
|
|
||||||
See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for
|
See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for more information
|
||||||
more information regarding archive formats.
|
regarding archive formats.
|
||||||
|
|||||||
@ -3,5 +3,5 @@
|
|||||||
|
|
||||||
_arguments \
|
_arguments \
|
||||||
'(-r --remove)'{-r,--remove}'[Remove archive.]' \
|
'(-r --remove)'{-r,--remove}'[Remove archive.]' \
|
||||||
"*::archive file:_files -g '(#i)*.(7z|Z|apk|aar|bz2|cab|cpio|deb|ear|gz|ipa|ipsw|jar|lrz|lz4|lzma|rar|rpm|sublime-package|tar|tar.bz2|tar.gz|tar.lrz|tar.lz|tar.lz4|tar.xz|tar.zma|tar.zst|tbz|tbz2|tgz|tlz|txz|tzst|war|whl|xpi|xz|zip|zst|zpaq)(-.)'" \
|
"*::archive file:_files -g '(#i)*.(7z|Z|apk|aar|bz2|cab|cpio|deb|ear|gz|ipa|ipsw|jar|lrz|lz4|lzma|obscpio|rar|rpm|sublime-package|tar|tar.bz2|tar.gz|tar.lrz|tar.lz|tar.lz4|tar.xz|tar.zma|tar.zst|tbz|tbz2|tgz|tlz|txz|tzst|war|whl|xpi|xz|zip|zst|zpaq)(-.)'" \
|
||||||
&& return 0
|
&& return 0
|
||||||
|
|||||||
@ -72,7 +72,7 @@ EOF
|
|||||||
builtin cd -q ..; command rm *.tar.* debian-binary ;;
|
builtin cd -q ..; command rm *.tar.* debian-binary ;;
|
||||||
(*.zst) unzstd "$file" ;;
|
(*.zst) unzstd "$file" ;;
|
||||||
(*.cab) cabextract -d "$extract_dir" "$file" ;;
|
(*.cab) cabextract -d "$extract_dir" "$file" ;;
|
||||||
(*.cpio) cpio -idmvF "$file" ;;
|
(*.cpio|*.obscpio) cpio -idmvF "$file" ;;
|
||||||
(*.zpaq) zpaq x "$file" ;;
|
(*.zpaq) zpaq x "$file" ;;
|
||||||
(*)
|
(*)
|
||||||
echo "extract: '$file' cannot be extracted" >&2
|
echo "extract: '$file' cannot be extracted" >&2
|
||||||
|
|||||||
@ -3,10 +3,5 @@
|
|||||||
# If marked is passed a file, open it in Marked
|
# If marked is passed a file, open it in Marked
|
||||||
#
|
#
|
||||||
function marked() {
|
function marked() {
|
||||||
if [ "$1" ]
|
|
||||||
then
|
|
||||||
open -a "marked 2.app" "$1"
|
open -a "marked 2.app" "$1"
|
||||||
else
|
|
||||||
open -a "marked 2.app"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|||||||
17
plugins/marktext/README.md
Normal file
17
plugins/marktext/README.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
## marktext
|
||||||
|
|
||||||
|
Plugin for MarkText, a previewer for Markdown files on Mac OS X
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
|
||||||
|
* [MarkText](https://github.com/marktext/marktext)
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
* If `marktext` is called without an argument, open MarkText
|
||||||
|
|
||||||
|
* If `marktext` is passed a file, open it in MarkText
|
||||||
|
|
||||||
|
### Credits
|
||||||
|
|
||||||
|
* just copied from plugins/marked2, all credits to marked2 plugin author
|
||||||
7
plugins/marktext/marktext.plugin.zsh
Normal file
7
plugins/marktext/marktext.plugin.zsh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
# If marktext is called without an argument, open MarkText
|
||||||
|
# If marktext is passed a file, open it in MarkText
|
||||||
|
#
|
||||||
|
function marktext() {
|
||||||
|
open -a "MarkText.app" "$1"
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user