Select Page

Jedit shortcuts reference

Keyboard Shortcuts

Files

ControlNNew file.
ControlOOpen file.
ControlWClose buffer.
ControlE ControlWClose all buffers.
ControlSSave buffer.
ControlE ControlSSave all buffers.
ControlPPrint buffer.
ControlPage UpGo to previous buffer.
ControlPage DownGo to next buffer.
Control`Go to recent buffer.
ControlQExit jEdit.

Views

ControlE ControlTTurn gutter (line numbering) on and off.
Control2Split view horizontally.
Control3Split view vertically.
Control1Unsplit.
AltPage UpSend keyboard focus to previous text area.
AltPage DownSend keyboard focus to next text area.
ControlE ControlUp; ControlLeft; ControlDown; ControlRightSend keyboard focus to top; bottom; left; right docking area.
ControlE Control`Close currently focused docking area.
ControlE ControlESend keyboard focus back to current text area.

Repeating

ControlEnternumbercommandRepeat the command (it can be a keystroke, menu item selection or tool bar click) the specified number of times.

Moving the Caret

ArrowMove caret one character or line.
ControlArrowMove caret one word or paragraph.
Page Up; Page DownMove caret one screenful.
HomeFirst non-whitespace character of line, beginning of line, first visible line (repeated presses).
EndLast non-whitespace character of line, end of line, last visible line (repeated presses).
ControlHomeBeginning of buffer.
ControlEndEnd of buffer.
Control]Go to matching bracket.
ControlE Control[; Control]Go to previous; next bracket.
ControlLGo to line.

Selecting Text

ShiftArrowExtend selection by one character or line.
ControlShiftArrowExtend selection by one word or paragraph.
ShiftPage Up; ShiftPage DownExtend selection by one screenful.
ShiftHomeExtend selection to first non-whitespace character of line, beginning of line, first visible line (repeated presses).
ShiftEndExtend selection to last non-whitespace character of line, end of line, last visible line (repeated presses).
ControlShiftHomeExtend selection to beginning of buffer.
ControlShiftEndExtend selection to end of buffer.
Control[Select code block.
ControlE W; L; PSelect word; line; paragraph.
ControlE ControlLSelect line range.
Control\Switch between single and multiple selection mode.

Scrolling

ControlE ControlJCenter current line on screen.
ControlE ControlICenter caret on screen.
Control; Control/Scroll up; down one line.
Alt; Alt/Scroll up; down one page.

Text Editing

ControlZUndo.
ControlE ControlZRedo.
Backspace; DeleteDelete character before; after caret.
ControlBackspace; ControlDeleteDelete word before; after caret.
ControlD; ControlE DDelete line; paragraph.
ControlShiftBackspace; ControlShiftDeleteDelete from caret to beginning; end of line.
ControlE RRemove trailing whitespace from the current line (or all selected lines).
ControlJJoin lines.
ControlBComplete word.
ControlE FFormat paragraph (or selection).

Clipboard and Registers

ControlX or ShiftDeleteCut selected text to clipboard.
ControlC or ControlInsertCopy selected text to clipboard.
ControlE ControlUAppend selected text to clipboard, removing it from the buffer.
ControlE ControlAAppend selected text to clipboard, leaving it in the buffer.
ControlV or ShiftInsertPaste clipboard contents.
ControlE ControlPVertical paste clipboard contents.
ControlR ControlX keyCut selected text to register key.
ControlR ControlC keyCopy selected text to register key.
ControlR ControlU keyAppend selected text to register key, removing it from the buffer.
ControlR ControlA keyAppend selected text to register key, leaving it in the buffer.
ControlR ControlV keyPaste contents of register key.
ControlR ControlP keyVertically paste contents of register key.
ControlE ControlVPaste previous.

Markers

ControlE ControlMIf current line doesn’t contain a marker, one will be added. Otherwise, the existing marker will be removed. Use the Markers menu to return to markers added in this manner.
ControlT keyAdd marker with shortcut key.
ControlY keyGo to marker with shortcut key.
ControlU keySelect to marker with shortcut key.
ControlK keyGo to marker with shortcut key, and move the marker to the previous caret position.
ControlE Control,; Control.Move caret to previous; next marker.

Search and Replace

ControlFOpen search and replace dialog box.
ControlGFind next.
ControlHFind previous.
ControlE ControlBSearch in open buffers.
ControlE ControlDSearch in directory.
ControlE ControlRReplace in selection.
ControlE ControlGReplace in selection and find next.
Control,Incremental search.
Control.Quick HyperSearch.
Alt,Incremental search for word under the caret.
Alt.Quick HyperSearch for word under the caret.

Source Code Editing

Control;Expand abbreviation.
AltLeft; AltRightShift current line (or all selected lines) left; right.
ShiftTab; TabShift selected lines left; right. Note that pressing Tab with no selection active will insert a tab character at the caret position.
ControlIIndent current line (or all selected lines).
ControlE ControlCWing comment selection.
ControlE ControlBBox comment selection.

Folding and Narrowing

AltBackspaceCollapse fold containing caret.
AltEnterExpand fold containing caret one level only.
AltShiftEnterExpand fold containing caret fully.
ControlE XExpand all folds.
ControlE AAdd explicit fold.
ControlE SSelect fold.
ControlE Enter keyExpand folds with level less than key, collapse all others.
ControlE N NNarrow to fold.
ControlE N SNarrow to selection.
AltUp AltDownMoves caret to previous; next fold.
ControlE UMoves caret to the fold containing the one at the caret position.

Macros

ControlM ControlRRecord macro.
ControlM ControlMRecord temporary macro.
ControlM ControlSStop recording.
ControlM ControlPRun temporary macro.
ControlM ControlLRun most recently played or recorded macro.

Alternative Shortcuts

A few frequently-used commands have alternative shortcuts intended to help you keep your hands from moving all over the keyboard.

AltJ; AltLMove caret to previous, next character.
AltI; AltKMove caret up, down one line.
AltQ; AltAMove caret up, down one screenful.
AltZFirst non-whitespace character of line, beginning of line, first visible line (repeated presses).
AltXLast non-whitespace character of line, end of line, last visible line (repeated presses).

Glob Patterns

jEdit uses glob patterns similar to those in the various Unix shells to implement file name filters in the file system browser. Glob patterns resemble regular expressions somewhat, but have a much simpler syntax. The following character sequences have special meaning within a glob pattern:

  • ? matches any one character
  • * matches any number of characters
  • {!glob} Matches anything that does not match glob
  • {a,b,c} matches any one of a, b or c
  • [abc] matches any character in the set a, b or c
  • [^abc] matches any character not in the set a, b or c
  • [a-z] matches any character in the range a to z, inclusive. A leading or trailing dash will be interpreted literally

In addition to the above, a number of "character class expressions" may be used as well:

  • [[:alnum:]] matches any alphanumeric character
  • [[:alpha:]] matches any alphabetical character
  • [[:blank:]] matches a space or horizontal tab
  • [[:cntrl:]] matches a control character
  • [[:digit:]] matches a decimal digit
  • [[:graph:]] matches a non-space, non-control character
  • [[:lower:]] matches a lowercase letter
  • [[:print:]] same as [:graph:], but also space and tab
  • [[:punct:]] matches a punctuation character
  • [[:space:]] matches any whitespace character, including newlines
  • [[:upper:]] matches an uppercase letter
  • [[:xdigit:]] matches a valid hexadecimal digit

Here are some examples of glob patterns:

  • * – all files
  • *.java – all files whose names end with ".java"
  • *.{c,h} – all files whose names end with either ".c" or ".h"
  • *[^~] – all files whose names do not end with "~"

 Regular Expressions

jEdit uses regular expressions to implement inexact search and replace. A regular expression consists of a string where some characters are given special meaning with regard to pattern matching.

Within a regular expression, the following characters have special meaning:

Positional Operators

  • ^ matches at the beginning of a line
  • $ matches at the end of a line
  • \b matches at a word break
  • \B matches at a non-word break
  • \< matches at the start of a word
  • \> matches at the end of a word

One-Character Operators

  • . matches any single character
  • \d matches any decimal digit
  • \D matches any non-digit
  • \n matches the newline character
  • \s matches any whitespace character
  • \S matches any non-whitespace character
  • \t matches a horizontal tab character
  • \w matches any word (alphanumeric) character
  • \W matches any non-word (alphanumeric) character
  • \\ matches the backslash ("\") character

Character Class Operator

  • [abc] matches any character in the set a, b or c
  • [^abc] matches any character not in the set a, b or c
  • [a-z] matches any character in the range a to z, inclusive. A leading or trailing dash will be interpreted literally
  • [[:alnum:]] matches any alphanumeric character
  • [[:alpha:]] matches any alphabetical character
  • [[:blank:]] matches a space or horizontal tab
  • [[:cntrl:]] matches a control character
  • [[:digit:]] matches a decimal digit
  • [[:graph:]] matches a non-space, non-control character
  • [[:lower:]] matches a lowercase letter
  • [[:print:]] same as [:graph:], but also space and tab
  • [[:punct:]] matches a punctuation character
  • [[:space:]] matches any whitespace character, including newlines
  • [[:upper:]] matches an uppercase letter
  • [[:xdigit:]] matches a valid hexadecimal digit

Subexpressions and Backreferences

  • (abc) matches whatever the expression abc would match, and saves it as a subexpression. Also used for grouping
  • (?:...) pure grouping operator, does not save contents
  • (?#...) embedded comment, ignored by engine
  • (?=...) positive lookahead; the regular expression will match if the text in the brackets matches, but that text will not be considered part of the match
  • (?!...) negative lookahead; the regular expression will match if the text in the brackets does not match, and that text will not be considered part of the match
  • \n where 0 < n < 10, matches the same thing the nth subexpression matched. Can only be used in the search string
  • $n where 0 < n < 10, substituted with the text matched by the nth subexpression. Can only be used in the replacement string

Branching (Alternation) Operator

  • a|b matches whatever the expression a would match, or whatever the expression b would match.

Repeating Operators

These symbols operate on the previous atomic expression.

  • ? matches the preceding expression or the null string
  • * matches the null string or any number of repetitions of the preceding expression
  • + matches one or more repetitions of the preceding expression
  • {m} matches exactly m repetitions of the one-character expression
  • {m,n} matches between m and n repetitions of the preceding expression, inclusive
  • {m,} matches m or more repetitions of the preceding expression

Stingy (Minimal) Matching

If a repeating operator (above) is immediately followed by a ?, the repeating operator will stop at the smallest number of repetitions that can complete the rest of the match.

0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments

Categories

0
Would love your thoughts, please comment.x
()
x