ateShowGridAreas(enabled) { return { type: UPDATE_SHOW_GRID_AREAS, enabled, }; }, /** * Updates the grid highlighter's show grid line numbers preference. * * @param {boolean} enabled * Whether or not the grid highlighter should show the grid line numbers. */ updateShowGridLineNumbers(enabled) { return { type: UPDATE_SHOW_GRID_LINE_NUMBERS, enabled, }; }, /** * Updates the grid highlighter's show infinite lines preference. * * @param {boolean} enabled * Whether or not the grid highlighter should extend grid lines infinitely. */ updateShowInfiniteLines(enabled) { return { type: UPDATE_SHOW_INFINITE_LINES, enabled, }; }, }; PK