We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Information
Description PrismJS cannote highlight the class name in C++.
class MainWindow : public QMainWindow
MainWindow
QMainWindow
void MainWindow::changeWindowTitle()
P.S.: You needn't care the slots / Q_OBJECT... Just refer to the GitHub approach
slots
Q_OBJECT
GitHub can highlight them well. You can see the code below:
Code snippet
class MainWindow : public QMainWindow { Q_OBJECT private slots: void changeWindowTitle(); }; void MainWindow::changeWindowTitle() { setWindowTitle(plainTextEdit->currentFile.split("/").last() + " - Notepanda"); }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Information
Description
PrismJS cannote highlight the class name in C++.
class MainWindow : public QMainWindow
, in this example,MainWindow
andQMainWindow
are both class names. Prism does not highlight theQMainWindow
.void MainWindow::changeWindowTitle()
, in this example,MainWindow
is a class name but PrismJS doesn't highlight it.GitHub can highlight them well. You can see the code below:
Code snippet
The code being highlighted incorrectly.
The text was updated successfully, but these errors were encountered: