Php ide em java mostra uma linha no meio da janela de código

5

Estou usando phpstorm e netbeans e toda vez que eu quero editar um arquivo php, há uma linha no meio da janela de código.
isso acontece também no menu de opções, onde há uma prévia do código.
Eu tenho o windows 7 64bit e eu instalei o mais recente java.
tanto phpstorm e netbeans usam java para executar e é por isso que eu presumo que o java precisa ser reparado de alguma forma.
Alguém já encontrou esse problema?
Obrigado

Captura de tela neste link

    
por peroxide 25.01.2011 / 10:56

1 resposta

6

A linha é para mostrar onde estão 80 caracteres. Há uma boa explicação sobre o fórum do netbeans aqui :

It's there as a guide to line length.

Good style generally avoids lines longer than 80 characters, and only 70 characters for examples intended to be used in documentation.

The red line simply marks 80 characters wide (by default) and is a visual guide to break long expressions over multiple lines.

You can adjust the placement of the red line in (Netbeans 6.7): Tools > Options > Editor > Formatting.

On the left you'll see Right Margin, with a default value of 80.

If you want to remove the red line all together, you can either:

  1. Increase the margin value to 160 or more; or goto
  2. Tools > Options > Fonts and Colors, change the color of the Text Limit Line to white

There may be other ways, but these are the easiest ways I know of.

The Java Code Conventions can be found here (and clause 4.1 is on page 9 of the pdf):

http://java.sun.com/docs/codeconv/CodeConventions.pdf

    
por 25.01.2011 / 11:05

Tags