Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Netbeans has this wiki entry on line endings: http://wiki.netbeans.org/FaqEditorEOLs

But it isn't very useful. It just says that you shouldn't develop on different OS and that's that...

In my situation however, I have no power over it. I'm on a windows machine and the PHP app I'm working on needs to end with the UNIX EOL.

There does not seem to be an option to set this for new files. Can anyone tell me where to set this?

share|improve this question

4 Answers

up vote 8 down vote accepted

Just saw that you can set this as a command-line startup flag: -J-Dline.separator=LF

I haven't tested this myself but I'm looking for ways to bake this into the configs somehow.

share|improve this answer

Have you considered managing the line endings at the version control level? Subversion, for example, lets you set an "eol-style" attribute with values "LF", "CR", "CRLF", and "native" (which translates the line endings stored in the repository to whatever is appropriate for the platform where the files are being checked out, and converts the other way when you check in.)

share|improve this answer

Since, a specific plug-in came out: http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=36810

I also like @JimLewis suggestion but I work on Windows with a linux virtual machine thus in some cases the versioning system line ending cannot help.

share|improve this answer
1  
This plugin works perfectly - it adds the current setting to the status bar and allow you to change by clicking on it – Deebster Jul 26 '12 at 11:42
...and by the way, my current experience with line ending on the borderline world of windows with a linux virtual machine is that it's better to force LF everywhere. Windows knows how to deal with it, in any case (beside notepad that shouldn't even exist). – Stefano Jan 29 at 10:31
This is an important issue, I really can't figure out why such a feature is not implemented natively into Netbeans. It's not that hard to do and it's very useful. The plugin works perfectly, btw, thanks. – Radu Murzea Apr 27 at 17:48

Please use following Netbeans Plugin

http://plugins.netbeans.org/plugin/36810/show-and-change-line-endings

share|improve this answer
2  
that's exactly my answer stackoverflow.com/a/8137531/422670, just one year later... – Stefano Jan 29 at 10:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.