20 lines
724 B
JavaScript
20 lines
724 B
JavaScript
const SettingsFields = {
|
|
HISTORY_SIZE: 'history-size',
|
|
WINDOW_WIDTH_PERCENTAGE: 'window-width-percentage',
|
|
CACHE_FILE_SIZE: 'cache-size',
|
|
CACHE_ONLY_FAVORITES: 'cache-only-favorites',
|
|
NOTIFY_ON_COPY: 'notify-on-copy',
|
|
CONFIRM_ON_CLEAR: 'confirm-clear',
|
|
MOVE_ITEM_FIRST: 'move-item-first',
|
|
ENABLE_KEYBINDING: 'enable-keybindings',
|
|
TOPBAR_PREVIEW_SIZE: 'topbar-preview-size',
|
|
TOPBAR_DISPLAY_MODE_ID: 'display-mode',
|
|
DISABLE_DOWN_ARROW: 'disable-down-arrow',
|
|
STRIP_TEXT: 'strip-text',
|
|
PRIVATE_MODE: 'private-mode',
|
|
PASTE_ON_SELECTION: 'paste-on-selection',
|
|
PROCESS_PRIMARY_SELECTION: 'process-primary-selection',
|
|
IGNORE_PASSWORD_MIMES: 'ignore-password-mimes',
|
|
};
|
|
export default SettingsFields;
|