You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to use vimx with Fedora20 and the script didn't work until I made the following change:
if [ "${cmd%m}" = "vi" ]; then
TO
if [ "${cmd%m*}" = "vi" ]; then
The text was updated successfully, but these errors were encountered:
I need to use vimx with Fedora20 and the script didn't work until I made the following change:
if [ "${cmd%m}" = "vi" ]; then
TO
if [ "${cmd%m*}" = "vi" ]; then
The text was updated successfully, but these errors were encountered: