aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings/default.js
blob: 71465c9107c45110d6bd9f3c0edb276563e4270d (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
export default {
  source: 'json',
  json: `{
  "keymaps": {
    "0": { "type": "scroll.home" },
    ":": { "type": "command.show" },
    "o": { "type": "command.show.open", "alter": false },
    "O": { "type": "command.show.open", "alter": true },
    "t": { "type": "command.show.tabopen", "alter": false },
    "T": { "type": "command.show.tabopen", "alter": true },
    "w": { "type": "command.show.winopen", "alter": false },
    "W": { "type": "command.show.winopen", "alter": true },
    "b": { "type": "command.show.buffer" },
    "k": { "type": "scroll.vertically", "count": -1 },
    "j": { "type": "scroll.vertically", "count": 1 },
    "h": { "type": "scroll.horizonally", "count": -1 },
    "l": { "type": "scroll.horizonally", "count": 1 },
    "<C-U>": { "type": "scroll.pages", "count": -0.5 },
    "<C-D>": { "type": "scroll.pages", "count": 0.5 },
    "<C-B>": { "type": "scroll.pages", "count": -1 },
    "<C-F>": { "type": "scroll.pages", "count": 1 },
    "gg": { "type": "scroll.top" },
    "G": { "type": "scroll.bottom" },
    "$": { "type": "scroll.end" },
    "d": { "type": "tabs.close" },
    "u": { "type": "tabs.reopen" },
    "K": { "type": "tabs.prev", "count": 1 },
    "J": { "type": "tabs.next", "count": 1 },
    "g0": { "type": "tabs.first" },
    "g$": { "type": "tabs.last" },
    "r": { "type": "tabs.reload", "cache": false },
    "R": { "type": "tabs.reload", "cache": true },
    "zp": { "type": "tabs.pin.toggle" },
    "zd": { "type": "tabs.duplicate" },
    "zi": { "type": "zoom.in" },
    "zo": { "type": "zoom.out" },
    "zz": { "type": "zoom.neutral" },
    "f": { "type": "follow.start", "newTab": false },
    "F": { "type": "follow.start", "newTab": true },
    "H": { "type": "navigate.history.prev" },
    "L": { "type": "navigate.history.next" },
    "[[": { "type": "navigate.link.prev" },
    "]]": { "type": "navigate.link.next" },
    "gu": { "type": "navigate.parent" },
    "gU": { "type": "navigate.root" },
    "y": { "type": "urls.yank" },
    "/": { "type": "find.start" },
    "n": { "type": "find.next" },
    "N": { "type": "find.prev" },
    "<S-Esc>": { "type": "addon.toggle.enabled" }
  },
  "search": {
    "default": "google",
    "engines": {
      "google": "https://google.com/search?q={}",
      "yahoo": "https://search.yahoo.com/search?p={}",
      "bing": "https://www.bing.com/search?q={}",
      "duckduckgo": "https://duckduckgo.com/?q={}",
      "twitter": "https://twitter.com/search?q={}",
      "wikipedia": "https://en.wikipedia.org/w/index.php?search={}"
    }
  }
}`,

  'form': {
    'keymaps': {
      'scroll.vertically?{"count":1}': 'j',
      'scroll.vertically?{"count":-1}': 'k',
      'scroll.horizonally?{"count":-1}': 'h',
      'scroll.horizonally?{"count":1}': 'l',
      'scroll.home': '0',
      'scroll.end': '$',
      'scroll.pages?{"count":-0.5}': '<C-U>',
      'scroll.pages?{"count":0.5}': '<C-D>',
      'scroll.pages?{"count":-1}': '<C-B>',
      'scroll.pages?{"count":1}': '<C-F>',

      'tabs.close': 'd',
      'tabs.reopen': 'u',
      'tabs.next?{"count":1}': 'J',
      'tabs.prev?{"count":1}': 'K',
      'tabs.first': 'g0',
      'tabs.last': 'g$',
      'tabs.reload?{"cache":true}': 'r',
      'tabs.pin.toggle': 'zp',
      'tabs.duplicate': 'zd',

      'follow.start?{"newTab":false}': 'f',
      'follow.start?{"newTab":true}': 'F',
      'navigate.history.prev': 'H',
      'navigate.history.next': 'L',
      'navigate.link.next': ']]',
      'navigate.link.prev': '[[',
      'navigate.parent': 'gu',
      'navigate.root': 'gU',

      'find.start': '/',
      'find.next': 'n',
      'find.prev': 'N',

      'command.show': ':',
      'command.show.open?{"alter":false}': 'o',
      'command.show.open?{"alter":true}': 'O',
      'command.show.tabopen?{"alter":false}': 't',
      'command.show.tabopen?{"alter":true}': 'T',
      'command.show.winopen?{"alter":false}': 'w',
      'command.show.winopen?{"alter":true}': 'W',
      'command.show.buffer': 'b',

      'addon.toggle.enabled': '<S-Esc>',
      'urls.yank': 'y',
      'zoom.in': 'zi',
      'zoom.out': 'zo',
      'zoom.neutral': 'zz',
    },
    'search': {
      'default': 'google',
      'engines': [
        ['google', 'https,//google.com/search?q={}'],
        ['yahoo', 'https,//search.yahoo.com/search?p={}'],
        ['bing', 'https,//www.bing.com/search?q={}'],
        ['duckduckgo', 'https,//duckduckgo.com/?q={}'],
        ['twitter', 'https,//twitter.com/search?q={}'],
        ['wikipedia', 'https,//en.wikipedia.org/w/index.php?search={}'],
      ]
    },
    'blacklist': [],
  }
};