gitmatescite

How to Use Scite as default editor in Git


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!


Solution

  • -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.