Kate
#include <kateviewhelpers.h>
Definition at line 432 of file kateviewhelpers.h.
bool KateCmdLineEdit::event |
( |
QEvent * |
e | ) |
|
|
virtual |
void KateCmdLineEdit::hideRequested |
( |
| ) |
|
|
signal |
void KateCmdLineEdit::keyPressEvent |
( |
QKeyEvent * |
ev | ) |
|
|
protected |
void KateCmdLineEdit::slotReturnPressed |
( |
const QString & |
text | ) |
|
|
slot |
Parse the text as a command.
The following is a simple PEG grammar for the syntax of the command. (A PEG grammar is like a BNF grammar, except that "/" stands for ordered choice: only the first matching rule is used. In other words, the parsing is short-circuited in the manner of the "or" operator in programming languages, and so the grammar is unambiguous.)
Text <- Range? Command / Position Range <- Position ("," Position)? / "%" Position <- Base Offset? Base <- Line / LastLine / ThisLine / Mark Offset <- [+-] Base Line <- [0-9]+ LastLine <- "$" ThisLine <- "." Mark <- "'" [a-z]
Definition at line 964 of file kateviewhelpers.cpp.
The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Sat May 9 2020 03:57:00 by
doxygen 1.8.7 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.