I'm using git config --global core.editor "mate -w"
when using textmate. How do I set it to scite? I am not sure what -w
or -f
means. Thanks!
-w
is a command line option, see mate --help
what it means. You can probably just use git config --global core.editor "scite"
, check scite --help
for any options.