More opening options
This commit is contained in:
parent
742007eb5f
commit
a1e6f80821
3 changed files with 32 additions and 13 deletions
|
|
@ -9,17 +9,23 @@ prepend_keymap = [
|
||||||
{ on = [ "o" ], run = [ "plugin smart-enter --sync --args='list'", "escape --visual --select" ], desc = "List openers for file." },
|
{ on = [ "o" ], run = [ "plugin smart-enter --sync --args='list'", "escape --visual --select" ], desc = "List openers for file." },
|
||||||
{ on = [ "l" ], run = [ "plugin smart-enter --sync", "escape --visual --select" ], desc = "Enter the child directory, or open file." },
|
{ on = [ "l" ], run = [ "plugin smart-enter --sync", "escape --visual --select" ], desc = "Enter the child directory, or open file." },
|
||||||
{ on = [ "L" ], run = [ "plugin smart-enter --sync --args='detatch'", "escape --visual --select" ], desc = "Open in new window." },
|
{ on = [ "L" ], run = [ "plugin smart-enter --sync --args='detatch'", "escape --visual --select" ], desc = "Open in new window." },
|
||||||
{ on = [ "1" ], run = [ "shell 'opener -n 1 $0' --block --confirm"], desc = "Open with program 1." },
|
|
||||||
{ on = [ "2" ], run = [ "shell 'opener -n 2 $0' --block --confirm"], desc = "Open with program 2." },
|
|
||||||
{ on = [ "3" ], run = [ "shell 'opener -n 3 $0' --block --confirm"], desc = "Open with program 3." },
|
|
||||||
{ on = [ "!" ], run = [ "shell 'opener -n 1 detatch $0' --block --confirm"], desc = "Open in new window with program 1." },
|
|
||||||
{ on = [ "@" ], run = [ "shell 'opener -n 2 detatch $0' --block --confirm"], desc = "Open in new window with program 2." },
|
|
||||||
{ on = [ "#" ], run = [ "shell 'opener -n 3 detatch $0' --block --confirm"], desc = "Open in new window with program 3." },
|
|
||||||
|
|
||||||
|
# Openers
|
||||||
|
{ on = [ "1" ], run = [ "shell 'opener -n 1 \"$0\"' --block --confirm"], desc = "Open with program 1." },
|
||||||
|
{ on = [ "2" ], run = [ "shell 'opener -n 2 \"$0\"' --block --confirm"], desc = "Open with program 2." },
|
||||||
|
{ on = [ "3" ], run = [ "shell 'opener -n 3 \"$0\"' --block --confirm"], desc = "Open with program 3." },
|
||||||
|
{ on = [ "!" ], run = [ "shell 'opener -n 1 detatch \"$0\"' --block --confirm"], desc = "Open in new window with program 1." },
|
||||||
|
{ on = [ "@" ], run = [ "shell 'opener -n 2 detatch \"$0\"' --block --confirm"], desc = "Open in new window with program 2." },
|
||||||
|
{ on = [ "#" ], run = [ "shell 'opener -n 3 detatch \"$0\"' --block --confirm"], desc = "Open in new window with program 3." },
|
||||||
|
|
||||||
|
# Better movement
|
||||||
{ on = [ "j" ], run = [ "plugin --sync arrow --args=1"], desc = "Move selection downwards, or wrap." },
|
{ on = [ "j" ], run = [ "plugin --sync arrow --args=1"], desc = "Move selection downwards, or wrap." },
|
||||||
{ on = [ "k" ], run = [ "plugin --sync arrow --args=-1"], desc = "Move selection upwards, or wrap." },
|
{ on = [ "k" ], run = [ "plugin --sync arrow --args=-1"], desc = "Move selection upwards, or wrap." },
|
||||||
|
|
||||||
|
{ on = [ "f" ], run = [ "plugin jump-to-char" ], desc = "Jump to first occurrence of character" },
|
||||||
|
{ on = [ "F" ], run = [ "plugin jump-to-char --args='previous'" ], desc = "Jump to first occurrence of character" },
|
||||||
|
|
||||||
{ on = [ "T" ], run = "plugin --sync max-preview", desc = "Maximize preview pane"},
|
{ on = [ "T" ], run = "plugin --sync max-preview", desc = "Maximize preview pane"},
|
||||||
{ on = [ "n" ], run = "create", desc = "Create a file or directory (ends with / for directories)" },
|
|
||||||
{ on = [ "<C-n>"], run = '''
|
{ on = [ "<C-n>"], run = '''
|
||||||
shell 'dragon -x -i -T "$1"' --confirm
|
shell 'dragon -x -i -T "$1"' --confirm
|
||||||
''', desc = "Open file with dragon"},
|
''', desc = "Open file with dragon"},
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ sort_reverse = false
|
||||||
sort_dir_first = true
|
sort_dir_first = true
|
||||||
sort_translit = false
|
sort_translit = false
|
||||||
linemode = "size"
|
linemode = "size"
|
||||||
show_hidden = true
|
show_hidden = false
|
||||||
show_symlink = false
|
show_symlink = false
|
||||||
# scrolloff = 5
|
# scrolloff = 5
|
||||||
mouse_events = [ "click", "scroll" ]
|
mouse_events = [ "click", "scroll" ]
|
||||||
|
|
|
||||||
|
|
@ -93,16 +93,27 @@ case $(file --mime-type "$file" -b) in
|
||||||
launch_term nvim "$file"
|
launch_term nvim "$file"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
image/x-xcf)
|
||||||
|
list_exit \
|
||||||
|
"Gimp"
|
||||||
|
|
||||||
|
launch_gui gimp "$file"
|
||||||
|
;;
|
||||||
image/*)
|
image/*)
|
||||||
list_exit \
|
list_exit \
|
||||||
"nsxiv"
|
"nsxiv" \
|
||||||
|
"Gimp"
|
||||||
|
|
||||||
|
if [ "$num" -eq 2 ]; then
|
||||||
|
launch_gui gimp "$file"
|
||||||
|
else
|
||||||
launch_gui nsxiv "$file"
|
launch_gui nsxiv "$file"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
video/*)
|
video/*)
|
||||||
list_exit \
|
list_exit \
|
||||||
"Neovim" \
|
"MPV"
|
||||||
"Emacs GUI" \
|
|
||||||
"Emacs TUI"
|
|
||||||
launch_gui mpv -quiet "$file"
|
launch_gui mpv -quiet "$file"
|
||||||
;;
|
;;
|
||||||
application/epub*|\
|
application/epub*|\
|
||||||
|
|
@ -113,12 +124,14 @@ case $(file --mime-type "$file" -b) in
|
||||||
image/vnd.djvu)
|
image/vnd.djvu)
|
||||||
list_exit \
|
list_exit \
|
||||||
"Zathura"
|
"Zathura"
|
||||||
|
|
||||||
launch_gui zathura "$file"
|
launch_gui zathura "$file"
|
||||||
;;
|
;;
|
||||||
audio/*|\
|
audio/*|\
|
||||||
video/x-ms-asf)
|
video/x-ms-asf)
|
||||||
list_exit \
|
list_exit \
|
||||||
"MPV"
|
"MPV"
|
||||||
|
|
||||||
# If it has an album cover, launch graphical mpv
|
# If it has an album cover, launch graphical mpv
|
||||||
[ -z "$(mediainfo "$1" | grep "Cover\s*: Yes")" ] \
|
[ -z "$(mediainfo "$1" | grep "Cover\s*: Yes")" ] \
|
||||||
&& (launch_term mpv --audio-display=no "$file") \
|
&& (launch_term mpv --audio-display=no "$file") \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue