Let me scroll you - How do I add scroll bar to Git Bash - cmd

So I'm using Git Bash. And I seriously want to be able to scroll back. I've tried adding the Quick Edit function, but nothing no scroll bar.
All I want is to scroll...

How do I add scroll bar to Git Bash?
Click on the icon image at the top left of the Git Bash window
Select Properties
Select the Layout tab.
Set the Screen Buffer Size Height to a larger number than
the Window Size Height.
Scroll bars will only appear if the buffer size is larger than the window size.
Example settings:

I don't know if there's a simpler solution, but conemu: https://code.google.com/p/conemu-maximus5/
has scroll bars and a lot more features.

Shift Up
Shift Down
will do scrolling in git bash

Related

Zoom only Text in Visual Studio Code

Is there a way to make Vs-code on Mac only zoom the text/file pane of the window? When I hit Command ⌘+ to zoom, it'll zoom all of the window, ie. also the icons on the left hand side and the file pane on the left as well.
Compare these two screen shots, maybe ;)
Vs-code window, normal
Vs-code window, zoomed in
I'd only like the source file (nfsd.sh in the screen shot) to be zoomed.
Answered in https://stackoverflow.com/a/41684631/5295392:
Out of Box solution for zoom in/out for text only:
Ctrl + Shift + P
Type (Open User Settings)
Search (Edit settings.json)
Add "editor.mouseWheelZoom": true
Save it.
You can use your mouse wheel to zoom in or zoom out only text in the text box.
Open your settings.json file and increase editor.fontSize to increase the size of the text on the source file.
Ctrl + Shift + P
Search 'Zoom'
Pick "Editor Font Zoom In"
Repeat till you get what you want.
On Mac, while pressing the command key, slide two fingers upward to zoom out. Slide downward to zoom in.

How to make VSCode editor stop scrolling past bottom of a file?

In the VSCode editor when you pull the scroll bar down to the bottom of the file, all you see is a blank page, since the text has scrolled up past the top of the text editor window. This makes scrolling to the bottom difficult because you can't just pull the scroll bar quickly all the way down but have to carefully position the cursor so you can still see your code.
Very similar to How to make Visual Studio editor stop scrolling past bottom of a file?, but comments have pointed out that question/answer is for Visual Studio. This answer is for VSCode on the macOS and Windows.
The correct answer is seen here: https://stackoverflow.com/a/40588828/1189470
There is a configuration option provided in VSCode for the functionality you specified. To enable it, go to File -> Preferences -> user settings
On the right side of the editor in settings.json paste the below line at the bottom (before closing bracket), save and close.
"editor.scrollBeyondLastLine": false
This will prevent the editor from scrolling beyond the last line.
This is now exposed as a simple checkbox labeled "Editor: Scroll Beyond Last Line" in File/Apple -> Preferences.
If just for readability you would like some space at the bottom of the file - a configurable amount - try this setting as of v1.43:
editor.padding.bottom in pixels
Editor> Padding: Bottom
Controls the amount of space between the bottom edge of the editor and
the last line.
and/or
editor.padding.top // but this isn't sticky in the sense that you can scroll right past the padding top and it is gone. It doesn't stay.

In RStudio, how to quickly hide/show a panel?

Is there a keyboard shortcut to quickly hide the left/right panels in RStudio? I can drag the vertical bar to resize the panels but that's cumbersome.
I'm not sure that there's a hotkey for hiding the left / right / upper / lower panels, but you might find the shortcut keys for zooming to a given quadrant pane useful.
For example, in Linux (and I'm guessing Windows):
CTRL+SHIFT+1 = Zoom Source
CTRL+SHIFT+2 = Zoom Console
...
CTRL+SHIFT+0 = Show All Panes
The whole list of the pane zoom shortcut keys can be seen under the View > Panes menu. These hotkeys seem to be rather recent additions, as the earliest mention that I can see of them is for release v0.99.902.

firefox pinned tabs/app tabs

I want to move the pinned tabs so that they are on the right side of the tab bar.
Is there a separate bar for the pinned tabs?
If so, how can I either move the "pinned tab bar" so that it stays to the right, relative to the normal tab bar?
Does anyone have any thoughts or code snippets so that I can manipulate the pinned tabs?
It's all done using relative positioning. If you wanted everything to line up to the right you'll have to essentially rewrite this function, _positionPinnedTabs see it here in the source code: http://mxr.mozilla.org/mozilla-central/source/browser/base/content/tabbrowser.xml#3179
With a function like _positionPinnedTabs using MozMarginEnd (in the tab box case) instead of MozMarginStart you could create the right hand side space for the tabs. Then you'd just need to position the tabs correctly in that space. Sorry it's not easier :)

iTerm2 - hide split pane title bars?

After recent update of iTerm2 the split panes look different:
This is how it looked before (some random image found on the Internet):
Is there a way to get the original look back or do I have to get used to it?
Edit: just to avoid confusion, what I'm concerned about are the "header" lines, the "(x) Default" thing. I'd like to have just a line there.
Edit 2: it's in this changelog:
- Add title bars to split panes that show the title. You can drag
panes by their titles, and there is a menu and a close button in it as
well.
Turn off prefs->appearance->show per-pane title bars with split panes.

Resources