.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / enquirer / lib / symbols.js
1 'use strict';
2
3 const isWindows = process.platform === 'win32';
4 const colors = require('ansi-colors');
5 const utils = require('./utils');
6
7 const symbols = {
8   ...colors.symbols,
9   upDownDoubleArrow: '⇕',
10   upDownDoubleArrow2: '⬍',
11   upDownArrow: '↕',
12   asterisk: '*',
13   asterism: '⁂',
14   bulletWhite: '◦',
15   electricArrow: '⌁',
16   ellipsisLarge: '⋯',
17   ellipsisSmall: '…',
18   fullBlock: '█',
19   identicalTo: '≡',
20   indicator: colors.symbols.check,
21   leftAngle: '‹',
22   mark: '※',
23   minus: '−',
24   multiplication: '×',
25   obelus: '÷',
26   percent: '%',
27   pilcrow: '¶',
28   pilcrow2: '❡',
29   pencilUpRight: '✐',
30   pencilDownRight: '✎',
31   pencilRight: '✏',
32   plus: '+',
33   plusMinus: '±',
34   pointRight: '☞',
35   rightAngle: '›',
36   section: '§',
37   hexagon: { off: '⬡', on: '⬢', disabled: '⬢' },
38   ballot: { on: '☑', off: '☐', disabled: '☒' },
39   stars: { on: '★', off: '☆', disabled: '☆' },
40   folder: { on: '▼', off: '▶', disabled: '▶' },
41   prefix: {
42     pending: colors.symbols.question,
43     submitted: colors.symbols.check,
44     cancelled: colors.symbols.cross
45   },
46   separator: {
47     pending: colors.symbols.pointerSmall,
48     submitted: colors.symbols.middot,
49     cancelled: colors.symbols.middot
50   },
51   radio: {
52     off: isWindows ? '( )' : '◯',
53     on: isWindows ? '(*)' : '◉',
54     disabled: isWindows ? '(|)' : 'Ⓘ'
55   },
56   numbers: ['⓪', '①', '②', '③', '④', '⑤', '⑥', '⑦', '⑧', '⑨', '⑩', '⑪', '⑫', '⑬', '⑭', '⑮', '⑯', '⑰', '⑱', '⑲', '⑳', '㉑', '㉒', '㉓', '㉔', '㉕', '㉖', '㉗', '㉘', '㉙', '㉚', '㉛', '㉜', '㉝', '㉞', '㉟', '㊱', '㊲', '㊳', '㊴', '㊵', '㊶', '㊷', '㊸', '㊹', '㊺', '㊻', '㊼', '㊽', '㊾', '㊿']
57 };
58
59 symbols.merge = options => {
60   let result = utils.merge({}, colors.symbols, symbols, options.symbols);
61   delete result.merge;
62   return result;
63 };
64
65 module.exports = symbols;
66