-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathTerminalView.sublime-settings
More file actions
26 lines (21 loc) · 997 Bytes
/
TerminalView.sublime-settings
File metadata and controls
26 lines (21 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
// Show dynamic colors (colors set by the shell) in the terminal view. This
// causes a minor increase in terminal response time so try disabling it if
// you are experiencing any problems.
"terminal_view_show_colors": true,
// Number of lines to buffer in history for scrollback.
"terminal_view_scroll_history": 1000,
// Percentage of page that is scrolled (1.0 corresponds to an entire page
// scroll).
"terminal_view_scroll_ratio": 0.5,
// Amount of character margin on the right-hand side of the terminal view.
// Tweak this if you want to avoid the horizontal scrollbar showing in the
// view. Defaults to a margin of 3 characters as this avoid the horizontal
// scrollbar in the default theme.
"terminal_view_right_margin": 3,
// Same as above but applies to the bottom of the view instead. Defaults to 0
// lines of margin,
"terminal_view_bottom_margin": 0,
// Enable/disable debug printing to the console.
"terminal_view_print_debug": false,
}