-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPgcliSublime.sublime_settings
39 lines (28 loc) · 1.27 KB
/
PgcliSublime.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
{
// Location of the pgclirc file
"pgclirc": "~/.pgclirc",
// Use pgcli to for autocomplete? If false, standard sublime autocompletion is used
"pgcli_autocomplete": true,
// List of python directories to add to python path so pgcli can be imported
"pgcli_dirs": [],
// List of python site directories to add to python path so pgcli can be imported
"pgcli_site_dirs": [],
// The path to the postgresql database. This may also be overridden in project-specific settings
"pgcli_url": "postgresql://",
// List of urls to show in the quick-connect menu
"pgcli_urls": [],
// Save query to file on run?
// "always": always save; "never" never save; "success" save if no errors
"pgcli_save_on_run_query_mode": "success",
// The command to send to os.system to open a pgcli command prompt
// {url} is automatically formatted with the appropriate database url
"pgcli_system_cmd": "pgcli {url}",
// Controls log level of PgcliSublime logger
"pgcli_sublime_log_level": "WARNING",
// Controls log level of pgcli
"pgcli_log_level": "WARNING",
// Controls the console handler
"pgcli_console_log_level": "WARNING",
// Regexes for file paths to exclude from autocompletion
"autocomplete_exclusions": [],
}