|
1 | 1 | { |
2 | | - // Path to store the history entries in (relative to the sublime packages path) |
| 2 | + // Path to store the history entries in (relative to the sublime packages |
| 3 | + // path). |
3 | 4 | "history_file": "User/FileHistory.json", |
4 | 5 |
|
5 | | - // Maximum number of history entries we should keep (older entries truncated) |
| 6 | + // Maximum number of history entries we should keep (older entries |
| 7 | + // truncated). |
6 | 8 | "global_max_entries": 100, |
7 | 9 |
|
8 | | - // Maximum number of history entries we should keep (older entries truncated) |
| 10 | + // Maximum number of history entries we should keep (older entries |
| 11 | + // truncated). |
9 | 12 | "project_max_entries": 50, |
10 | 13 |
|
11 | | - // Try to use the saved position of the file or blindly use the "new_tab_position" setting |
| 14 | + // Try to use the saved position of the file or blindly use the |
| 15 | + // "new_tab_position" setting. |
12 | 16 | "use_saved_position": true, |
13 | 17 |
|
14 | | - // Which position to open a file at when the saved index in no longer valid |
| 18 | + // Which position to open a file at when the saved index in no longer |
| 19 | + // valid. |
15 | 20 | // |
16 | 21 | // Options: "next", "first", "last" |
17 | 22 | "new_tab_position": "next", |
18 | 23 |
|
19 | 24 | // Should we show a preview of the history entries? |
20 | 25 | "show_file_preview": true, |
21 | 26 |
|
22 | | - // Remove any non-existent files from the history (when previewed or opened) |
| 27 | + // Remove any non-existent files from the history (when previewed or |
| 28 | + // opened). |
23 | 29 | "remove_non_existent_files_on_preview": false, |
24 | 30 |
|
25 | | - // If a cleanup of the history should be run on startup |
| 31 | + // If a cleanup of the history should be run on startup. |
26 | 32 | "cleanup_on_startup": true, |
27 | 33 |
|
28 | 34 | // Should the history be reset on startup? |
29 | 35 | // |
30 | | - // BE CAREFUL, this will DELETE ALL of your history entries |
| 36 | + // BE CAREFUL, this will DELETE ALL of your history entries. |
31 | 37 | "delete_all_on_startup": false, |
32 | 38 |
|
33 | 39 | // Should a monospace font be used in the quick panel? |
34 | 40 | "monospace_font": false, |
35 | 41 |
|
36 | 42 | // Should the last accessed timestamp be shown in the quick panel? |
37 | | - "display_timestamps": true, |
| 43 | + "timestamp_show": true, |
38 | 44 |
|
39 | | - // How to display the timestamp: |
40 | | - // "relative": how long since the access, e.g. '2 days, 5 hours' |
41 | | - // "absolute": the date and time of the last access |
42 | | - // |
43 | | - // Please note that the "relative" option can cause a delay in the quick panel popping up. |
44 | | - "timestamp_display_type": "relative", |
| 45 | + // Whether timestamps should be a relative approximation |
| 46 | + // e.g. '2 days, 5 hours', or an absolute timestamp using |
| 47 | + // the format below. |
| 48 | + "timestamp_relative": true, |
45 | 49 |
|
46 | | - // Format of the absolute timestamp that should be added to the history entry |
| 50 | + // Format of the absolute timestamp that should be added to the history |
| 51 | + // entry. |
47 | 52 | "timestamp_format": "%Y-%m-%d @ %H:%M:%S", |
48 | 53 |
|
49 | 54 | // Which timestamp to display? |
50 | 55 | // "history_access" - last opened/closed timestamp |
51 | 56 | // "filesystem" - the file's last modified timestamp |
52 | | - "timestamp_mode": "filesystem", |
| 57 | + "timestamp_mode": "history_access", |
53 | 58 |
|
54 | 59 | // Should the history file be nicely formatted? |
55 | 60 | "prettify_history": false, |
56 | 61 |
|
57 | | - // List of path regexs to exclude from the history tracking |
| 62 | + // List of path regexs to exclude from the history tracking. |
58 | 63 | // Can be extended in project settings (in a "file_histoy" dict). |
59 | 64 | // |
60 | | - // Note: You must use forward slashes for the path separator (regardless of platform) |
61 | | - // and escape backslashes properly. |
62 | | - // e.g. ["/temp/", "C:/Program Files/Internet Explorer/", "\\.bak$"] |
| 65 | + // Note: You must use forward slashes for the path separator (regardless of |
| 66 | + // platform) and escape backslashes properly. |
| 67 | + // |
| 68 | + // Example: ["/temp/", "C:/Program Files/Internet Explorer/", "\\.bak$"] |
63 | 69 | "path_exclude_patterns": [], |
64 | 70 |
|
65 | | - // List of path regexs that will re-include files that were excluded before |
| 71 | + // List of path regexs that will re-include files that were excluded before. |
66 | 72 | // Can be extended in project settings (in a "file_histoy" dict). |
67 | 73 | // |
68 | | - // Note: You must use forward slashes for the path separator (regardless of platform) |
69 | | - // and escape backslashes properly. |
70 | | - // e.g. ["/temp/", "C:/Program Files/Internet Explorer/", "\\.my\\.bak$"] |
| 74 | + // Note: You must use forward slashes for the path separator (regardless of |
| 75 | + // platform) and escape backslashes properly. |
| 76 | + // |
| 77 | + // Example: ["C:/Program Files/Internet Explorer/subdir/", "\\.my\\.bak$"] |
71 | 78 | "path_reinclude_patterns": [], |
72 | | - |
73 | | - // The number of daily backups to keep (backup is saved the first time the history is modified) |
| 79 | + |
| 80 | + // The number of daily backups to keep (backup is saved the first time the |
| 81 | + // history is modified). |
| 82 | + // |
74 | 83 | // To turn off backups, change this setting to 0 (zero). |
75 | 84 | "max_backup_count": 3, |
76 | | - |
| 85 | + |
77 | 86 | // Print out debug text? |
78 | 87 | "debug": false |
79 | 88 | } |
0 commit comments