forked from danielmagnussons/orgmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orgmode.sublime-settings
77 lines (65 loc) · 2.58 KB
/
orgmode.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
// Global
"color_scheme": "Packages/orgmode/Color Scheme/orgmode.tmTheme",
"word_wrap": true,
"translate_tabs_to_spaces": true,
"tab_size": 2,
"auto_indent": true,
"indent_subsequent_lines": true,
"detect_indentation": false,
"line_numbers": true,
"save_on_focus_lost": true,
"gutter": true,
// autocomplete of "date" will insert current date with format
"orgmode.autocomplete.date.cmd":"date",
"orgmode.autocomplete.date":"%Y-%m-%d %H:%M",
//orgmode resolvers
//jira
"orgmode.open_link.resolver.jira.url":"http://sandbox.onjira.com/browse/%s",
"orgmode.open_link.resolver.jira.pattern":"^(jira|j):(?P<issue>.+)$",
//redmine
"orgmode.open_link.resolver.redmine.url":"http://google.org/issues/%s",
"orgmode.open_link.resolver.redmine.pattern":"^(issue:|redmine:|#)(?P<issue>.+)$",
//crucible
"orgmode.open_link.resolver.crucible.url":"http://sandbox.fisheye.atlassian.com/cru/%s",
"orgmode.open_link.resolver.crucible.pattern":"^(crucible|cru|cr):(?P<review>.+)$",
//email
"orgmode.open_link.resolver.email.url":"mailto:%s",
"orgmode.open_link.resolver.email.pattern":"^(?P<type>email|mailto):(?P<email>[^/]+)(/(?P<subject>.+))?$",
//fisheye
"orgmode.open_link.resolver.fisheye.url":"http://sandbox.fisheye.atlassian.com/changelog/%s",
"orgmode.open_link.resolver.fisheye.pattern":"^(fisheye|fish|fe):(?P<repo>[^/]+)(/(?P<rev>.+))?$",
//prompt
"orgmode.open_link.resolver.prompt.pattern":"^(cmd:|prompt:)(?P<path>.+)$",
//local_file
"orgmode.open_link.resolver.local_file.force_into_sublime":"'*.txt', '*.org', '*.py', '*.rb', '*.html', '*.css', '*.js', '*.php', '*.c', '*.cpp', '*.h'",
"orgmode.open_link.resolver.local_file.pattern":"^(?P<filepath>.+?)(?::(?P<row>\\d+)(?::(?P<col>\\d+))?)?$",
// HelpIt
"cocoa" : {
"url" : "http://www.google.com/search?btnI=1&q=site:developer.apple.com+%s"
},
"objc" : {
"url" : "http://www.google.com/search?btnI=1&q=site:developer.apple.com+%s"
},
"java" : {
"url" : "http://www.google.com/search?btnI=1&q=site:docs.oracle.com+javadoc+%s"
},
"python" : {
"url" : "http://docs.python.org/search.html?q=%s"
},
"php" : {
"url" : "http://php.net/%s"
},
"less" : {
"map" : "css"
},
"js" : {
"sub" : [{
"contains" : "$",
"url" : "http://api.jquery.com/%s",
"remove" : "\\$.*\\."
}]
},
"html" : "http://www.google.com/search?btnI=1&q=site:w3schools.com/html5+tag+%s",
"plain": "http://answers.com/%s"
}