Using sqlite with postgres table browsing pager in emacs

1 · Shane Mulligan · Oct. 19, 2019, 11 a.m.
Create the edbi script 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/bin/bash export TTY path="$1" case "$path" in *.sqlite|*.db) { sp -e "(edbi-sqlite $(aqf "$path"))" } ;; *) { orspe -ci "edbi:open-db-viewer" } ;; esac add the rules for ranger 1 2 ext sqlite = o-db "$@" ext db = o-db "$@"...