Anyone knows how to accommodate for new gnome-terminal-server magic?
Before gnome-terminal got its new "client/server" architecture I used to use it as vim wrapper with great success for many years. Since --disable-factory got dropped the following code doesn't lock the process (due to forking) therefore it's useless as an editor for e.g. text areas in browser:
#!/bin/bash
TERMINAL=gnome-terminal
TERMARGS="--disable-factory --full-screen -e"
for ARG in "$@"; do
# arguments quotation, etc.
ARGS="$ARGS $ARG"
done
$TERMINAL $TERMARGS "vim $ARGS"