0

Is there a way for Eclipse to show the total number of lines in the currently open file, and/or the file size in kilobytes, at the bottom of the screen near the current line/column display?

Is there is a plugin that changes e.g. 77 : 70 to something like 77(450) : 70?

stackexchanger
  • 230
  • 3
  • 9

2 Answers2

0

I don't know of a plugin that does this but you can create your own which adds a control item to a toolbar.

In the control's class you can extend ControlContribution and then you can create a label with any text you want. Look here for a similar example. You could create a toolbar which shows any information you want about the currently opened file.

Sunvic
  • 1,521
  • 2
  • 10
  • 13
0

You can try this plugin. Along with file details the selected text will automatically copied to the clipboard check this Eclipse: selection autocopy to clipboard.

Community
  • 1
  • 1
Chandrayya G K
  • 8,719
  • 5
  • 40
  • 68