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
Something like EDITOR=$(git config --get core.editor)
The text was updated successfully, but these errors were encountered:
foucdeg
changed the title
Use the preferred file editor configured in git instead of always Vim
Use the preferred file editor configured in git?
Sep 25, 2018
@williamdclt After reading more on this, it seems that the env variable you used, EDITOR, is a system-wide standard, which git actually uses if you don't specify core.editor.
So I guess I could export EDITOR=whatever too.
Something like
EDITOR=$(git config --get core.editor)
The text was updated successfully, but these errors were encountered: