Skip to content

Dashboard: My filters

Raymond Hill edited this page Jun 20, 2020 · 17 revisions

my-filters

uBO uses CodeMirror's widget to freely edit your filters as plain text.

The following keyboard shortcuts are available during editing -- most of them are handled by CodeMirror by default (I mostly lazily transcribed CodeMirror's own documentation):

____PC____ ___Mac___ Function
Ctrl-A Cmd-A Select the whole content of the editor.
Ctrl-D Cmd-D Deletes the whole line under the cursor, including newline at the end.
Ctrl-Z Cmd-Z Undo the last change.
Note that, because browsers still don't make it possible for scripts to react to or customize the context menu,
selecting undo (or redo) from the context menu in a CodeMirror instance does not work.
Ctrl-Y Cmd-Y Redo the last undone change.
Ctrl-U Cmd-U Undo the last change to the selection, or if there are no selection-only changes at the top of the history, undo the last change.
Alt-U Shift-Cmd-U Redo the last change to the selection, or the last text change if no selection changes remain.
Ctrl-Home Cmd-Home Move the cursor to the start of the document.
Ctrl-End Cmd-End Move the cursor to the end of the document.
Home Home Move to the start of the text on the line, or if we are already there, to the actual start of the line (including whitespace).
End End Move to the end of the line.
  • Up, Mac: Ctrl-P: Move the cursor up one line.
  • Down, Mac: Ctrl-N: Move down one line.
  • Page Up, Mac: Shift-Ctrl-V: Move the cursor up one screen, and scroll up by the same distance.
  • Page Down, Mac: Ctrl-V: Move the cursor down one screen, and scroll down by the same distance.
  • Left, Mac: Ctrl-B: Move the cursor one character left, going to the previous line when hitting the start of line.
  • Right, Mac: Ctrl-F: Move the cursor one character right, going to the next line when hitting the end of line.
  • Ctrl-Left, Mac: Alt-Left: Move to the left of the group before the cursor. A group is a stretch of word characters, a stretch of punctuation characters, a newline, or a stretch of more than one whitespace character.
  • Ctrl-Right, Mac: Alt-Right: Move to the right of the group after the cursor (see above).
  • Backspace, Mac: Ctrl-H: Delete the character before the cursor.
  • Delete, Mac: Ctrl-D: Delete the character after the cursor.
  • Ctrl-Backspace, Mac: Alt-Backspace: Delete to the left of the group before the cursor.
  • Ctrl-Delete, Mac: Alt-Delete: Delete to the start of the group after the cursor.
  • Ctrl-], Mac: Cmd-]: Indent the current line or selection by one indent unit.
  • Ctrl-[, Mac: Alt-[: Dedent the current line or selection by one indent unit.
  • uBO-specific: Tab: Toggle prepending the current line or the lines in the current selection with ! (to quickly toggle the commenting out of filters).
  • Ctrl-S, Mac: Cmd-S: Save and apply the changes, if any.
  • Ctrl-F, Mac: Cmd-F: Find a string. Wrap around / to search against a regular expression.
  • Ctrl-G, Mac: Cmd-G: Find next occurrence after the current cursor position.
  • Shift-Ctrl-G, Mac: Shift-Cmd-G: Find previous occurrence before the current cursor position.
Clone this wiki locally