When editing code at the very end of a long file, I have to look at the bottom of my screen. This is a bit annoying:

I would like to be able to scroll past the content so that the code I'm editing appears roughly in the center of my screen.

I guess, you could add padding-bottom to the editor area to achieve this.
You can already do this by setting the scrollPastEnd flag in your brackets.json file.
Refer to https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences for more info.
There is also an extension called "Preferences setup UI" that adds a window to the editor menu that allows you to set the brackets preferences visually instead of having to manually type them in, if you'd rather that way.
@UncleAcid I've added a brackets.json file to the root of my project with this content:
{
"scrollPastEnd": true
}
Didn't work :(
@simevidas Rename brackets.json to .brackets.json (mind the beginning dot!) and then reload Brackets.
@sbruchmann Ah my mistake. It works now :)
This feature should be enabled by default, I think.
@simevidas Instead of adding it just to .brackets.json in your project go to Debug -> Open Preferences File, and add the same code there. Then it will be enabled by default on every project.
@TomMalbran Thanks :)
@TomMalbran Thank you, i really don't like the fact of this important feature is turned off by default!
@simevidas Instead of adding it just to
.brackets.jsonin your project go toDebug -> Open Preferences File, and add the same code there. Then it will be enabled by default on every project.
seems to work for me, relieved:) thanks
Most helpful comment
You can already do this by setting the scrollPastEnd flag in your brackets.json file.
Refer to https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#preferences for more info.
There is also an extension called "Preferences setup UI" that adds a window to the editor menu that allows you to set the brackets preferences visually instead of having to manually type them in, if you'd rather that way.