andischerer / atom-svn

SVN integration for atom text editor
MIT License
34 stars 7 forks source link

Changes of Code or anything else is not Colored #29

Closed atodicebear closed 7 years ago

atodicebear commented 8 years ago

I have installed it over command line once and over Atom +Install Packages once, both times it was not working. Git-Diff is enabled. And more setups are not explained to get it running. I worked earlier with Atom and Github there it was working, changed Files were Orange. This packet https//atom.io/packages/tortoise-svn is working fine with Atom. It shows changed Files which I can Commit then. So svn setup is working fine it has something to be with the Package...

Solutions?

drchuckradio commented 7 years ago

I've noticed the same thing. Not sure what changed, but my projects are in SVN, and there's no indication that my files had changed. I've even re-installed Atom and my packages, but still not working. I'm using Atom 1.11.2 and svn 0.0.13.

Also, there's no indication in the status bar that I'm working on a project that's in an SVN repository. I used to get that, too.

atodicebear commented 7 years ago

@andischerer @awestroke Something on that?

drchuckradio commented 7 years ago

I figured it out, turns out svn.exe was no longer in my Windows environment path:

This package uses a binary svn wrapper. So you have to put your svn-binary in your os searchpath.

I put my TortoiseSVN bin folder on my path, and everything started working again.

atodicebear commented 7 years ago

could you post a detailed explanation please?

drchuckradio commented 7 years ago

In Windows 10, go to Control Panel, and click the System icon. Then click "Advanced system settings" (on the left side of the window). This opens the System Properties window. On the "Advanced" tab, click the button "Environment Variables." There is a variable "Path" under your user name and System variables. I used the variable under my user name, selected it and clicked the "Edit" button. Add a new folder by clicking "New" and entering the path to your svn.exe file. I'm using TortoiseSVN x64, so my path is C:\Program Files\TortoiseSVN\bin. Once you have this path entered, the svn pacakage will find the svn executable.

atodicebear commented 7 years ago

That worked for me as well :) Thx mate.