lajos
lajos

Reputation: 25705

how to hide the text limit line in netbeans 6.5?

Is there a way to hide the text limit line in netbeans 6.5?

Upvotes: 7

Views: 9310

Answers (9)

Lenard Bartha
Lenard Bartha

Reputation: 588

Have you tried to see if your project properties have formatting that overwrites the global properties?

See below: https://bz.apache.org/netbeans/show_bug.cgi?id=223329

Upvotes: 0

gpap
gpap

Reputation: 2854

As for now (October '18) in NetBeans 8.2 + 9 you can hide the text limit line or actually change its color by going to Options -> Fonts & Colors -> Highlighting -> Text Limit Line -> Foreground

Upvotes: 1

Ali Haider
Ali Haider

Reputation: 102

There is an easy way to disable the warning generated by NetBeans for number of lines.

Goto Tools > Options > Editor > Hints

Find the checkbox Too Many Lines > un-check the checkbox

and click Apply.

Enjoy :)

Upvotes: 0

surtep
surtep

Reputation: 1

Remember to go to tools, options, fonts & colors, highlighting tab, text limit line selected before exporting ccp.zip....

Upvotes: 0

layne obserdia
layne obserdia

Reputation: 61

You can set it to 0. So It will not be visible.

Upvotes: 6

rkk
rkk

Reputation: 321

In NetBeans 6.9, setting Right Margin to 0 effectively hides the text limit line.
Set the value in Preferences > Editor > Formatting > All Languages > Right Margin.
(Mac OS X 10.6.4, NetBeans 6.9)

Upvotes: 32

DaeWoong Kim
DaeWoong Kim

Reputation:

Hi~ I found out how to hide "Text limit line" :)

  1. Tools -> Options -> Export(Popup Win) -> Browse.. (Select target "ccc.zip" file) Select Options for Export : Check at "Editor" -> OK

  2. Edit xml file "\Editors\Preferences\org-netbeans-modules-editor-settings-CustomPreferences.xml" in "ccc.zip" file.

    <entry javaType="java.lang.Boolean" name="text-limit-line-visible" xml:space="preserve">
    <value><![CDATA[false]]></value></entry>
    
  3. Tools -> Options -> Import "ccc.zip" file

Done

Upvotes: 3

RAD
RAD

Reputation:

line is not moving to 200 column, but you can hide it setting its color to same as the background

Upvotes: 9

Daniel Bungert
Daniel Bungert

Reputation: 218

Are you talking about the line running thru the right side, by default at the 80 column point? That is Options -> Editor -> Indentation -> Right margin. I have it set at 200 columns which pushes it off the right side of the screen.

Upvotes: 5

Related Questions