diff options
author | Florian Pritz <bluewind@xinu.at> | 2024-02-14 12:17:07 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2024-07-02 12:59:23 +0200 |
commit | 8fddd2b490b2caff502571fb7c4159b97fd5705e (patch) | |
tree | f6383631fe77d3c50f580f2869d3047f28a3bf8e | |
parent | 492b47bbd55527ad8d9ff403b17b02a1e37c5c53 (diff) | |
download | bin-8fddd2b490b2caff502571fb7c4159b97fd5705e.tar.gz bin-8fddd2b490b2caff502571fb7c4159b97fd5705e.tar.xz |
add gvim wrapper to use terminal instead of gui
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | gvim | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/bash + +# Compact layer for firefox because for some files I cannot select to open with +# a different application. +if [[ $1 = '-f' ]]; then + shift +fi + +exec gvim-term "$@" |