Update nvim

This commit is contained in:
Smirnov Alexander 2021-06-10 19:09:35 +03:00
parent a01c2ab92c
commit 093639a28a
24 changed files with 102 additions and 119 deletions

View file

@ -38,4 +38,3 @@ map sa shell zip -r archive.zip %s
map ss shell tar -czvf archive.tar.gz %s
map sd shell 7z a archive.7z %s
map se shell extract %s

View file

@ -1,52 +0,0 @@
# vim:ft=cfg
#== Web
ext x?html?, has google-chrome, X, flag f = google-chrome $@
ext x?html?, has firefox, X, flag f = firefox -- "$@"
#== Script
ext py = python -- "$1"
ext js = node -- "$1"
ext sh = bash -- "$1"
#== Misc
#mime ^text, lable editor = $EDITOR -- "$@"
#mime ^text, label pager = $PAGER -- "$@"
!mime ^text, label editor, ext json|csv|tex|py|rb|js|sh = ${EDITOR} -- "$@"
!mime ^text, label pager, ext json|csv|tex|py|rb|js|sh = "$PAGER" -- "$@"
name ^[mM]akefile$ = make
#== Video/Audio
mime ^video, has mpv, X, flag f = mpv -- "$@"
mime ^video, has mpv, X, flag f = mpv --fs -- "$@"
mime ^video|audio, has vlc, X, flag f = vlc -- "$@"
#== Documents
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has libreoffice, X, flag f = libreoffice "$@"
ext pdf, has zathura, X, flag f = zathura -- "$@"
ext djvu, has zathura, X, flag f = zathura -- "$@"
ext epub, has zathura, X, flag f = zathura -- "$@"
#== Images
mime ^image/svg, has inkscape, X, flag f = inkscape -- "$@"
mime ^image, has feh, X, flag f = feh -- "$@"
mime ^image, has ristretto, X, flag f = ristretto "$@"
mime ^image, has gimp, X, flag f = gimp -- "$@"
ext xcf, X, flag f = gimp -- "$@"
#== Archives
ext 7z, has 7z = 7z -p l "$@" | "$PAGER"
ext ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --list --each -- "$@" | "$PAGER"
ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --list --each -- "$@" | "$PAGER"
ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --extract --each -- "$@"
ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --extract --each -- "$@"
ext tar|gz|bz2|xz, has tar = tar vvtf "$1" | "$PAGER"
ext tar|gz|bz2|xz, has tar = for file in "$@"; do tar vvxf "$file"; done
ext bz2, has bzip2 = for file in "$@"; do bzip2 -dk "$file"; done
ext zip, has unzip = unzip -l "$1" | less
ext zip, has unzip = for file in "$@"; do unzip -d "${file%.*}" "$file"; done
ext rar, has unrar = unrar l "$1" | less
ext rar, has unrar = for file in "$@"; do unrar x "$file"; done