forked from svenax/SublimePrint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSublimePrint.sublime-settings
43 lines (33 loc) · 1.04 KB
/
SublimePrint.sublime-settings
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
// The binary to be used for printing.
"command": "enscript",
// Option to set the title used in headers etc.
"title_option": "title",
// Should line numbers be printed?
"print_line_numbers": true,
// Cache printer names and default
"cache_printer_names": true,
// Should the user be prompted to choose which printer to print to?
"prompt_printer": false,
// Direct command line options for 'enscript'
"options":
{
// Line numbers starts from 1.
"line-numbers": 1,
// Paper type.
"media": "A4",
//"media": "Letter",
// Print in landscape mode?
//"landscape": "",
// Multi-column printing.
//"columns": 2,
// If the value of this key is empty, the language will be auto-detected
// from the file name.
// See 'enscript --help-highlight' for a list of supported languages.
"highlight": "",
// Other settings
"fancy-header": "",
"font": "Courier@8",
"tabsize": 4
}
}