-
Notifications
You must be signed in to change notification settings - Fork 10
/
Requester.sublime-settings
48 lines (34 loc) · 1.47 KB
/
Requester.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
44
45
46
47
48
{
// display error if request doesn't return after this many seconds
"timeout": 15,
// display error if env hasn't been executed after this many seconds
"timeout_env": 15,
// are redirects allowed by default?
"allow_redirects": true,
// scheme prepended to URLs in case no scheme is specified
"scheme": "http",
// JSON response formatting, one of ("raw", "indent", "indent_sort")
"fmt": "indent_sort",
// don't render responses whose content length (kilobytes) exceeds this value
"max_content_length_kb": 5000,
// if a single request is executed, change focus to response tab after request returns
"change_focus_after_request": true,
// if multiple requests are executed, automatically reorder response tabs
// based on requests in requester file after requests return
"reorder_tabs_after_requests": false,
// pin newly opened response tabs by default, so they aren't overwritten by
// requests with the same method and URL
"pin_tabs_by_default": false,
// max length of name of response tabs
"response_tab_name_length": 32,
// name of history file, this is stored in User directory
"history_file": "Requester.history.json",
// max number of requests in history
"history_max_entries": 250,
// chunk size for file downloads (bytes)
"chunk_size": 1024,
// only perform file download if response status code is 200
"only_download_for_200": true,
// absolute path to extra python packages included in env
"packages_path": ""
}