- enhancement: auto complete '#undef'
This commit is contained in:
parent
4bd6c4dd39
commit
631da69d84
3
NEWS.md
3
NEWS.md
|
@ -1,3 +1,6 @@
|
|||
Red Panda C++ Version 1.0.8
|
||||
- enhancement: auto complete '#undef'
|
||||
|
||||
Red Panda C++ Version 1.0.7
|
||||
- change: use Shift+Enter to break line
|
||||
- change: highlight whole #define statement using one color
|
||||
|
|
|
@ -10,7 +10,7 @@ isEmpty(APP_NAME) {
|
|||
}
|
||||
|
||||
isEmpty(APP_VERSION) {
|
||||
APP_VERSION=1.0.7
|
||||
APP_VERSION=1.0.8
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -294,6 +294,7 @@ void initParser()
|
|||
CppDirectives.append("#error");
|
||||
CppDirectives.append("#pragma");
|
||||
CppDirectives.append("#line");
|
||||
CppDirectives.append("#undef");
|
||||
|
||||
// javadoc tags
|
||||
JavadocTags.append("@author");
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include "../mainwindow.h"
|
||||
#include "../editor.h"
|
||||
#include "../editorlist.h"
|
||||
#include <QDebug>
|
||||
|
||||
CodeCompletionListView::CodeCompletionListView(QWidget *parent) : QListView(parent)
|
||||
{
|
||||
|
@ -27,6 +28,7 @@ CodeCompletionListView::CodeCompletionListView(QWidget *parent) : QListView(pare
|
|||
|
||||
void CodeCompletionListView::keyPressEvent(QKeyEvent *event)
|
||||
{
|
||||
|
||||
if (event->key() == Qt::Key_Up
|
||||
|| event->key() == Qt::Key_Down
|
||||
|| event->key() == Qt::Key_PageDown
|
||||
|
|
|
@ -17,7 +17,7 @@ SUBDIRS += \
|
|||
|
||||
APP_NAME = RedPandaCPP
|
||||
|
||||
APP_VERSION = 1.0.7
|
||||
APP_VERSION = 1.0.8
|
||||
|
||||
linux: {
|
||||
|
||||
|
|
Loading…
Reference in New Issue