aboutsummaryrefslogtreecommitdiff
path: root/desktop-utilities/lumina-terminal/TermWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-14 16:21:02 -0400
committerKen Moore <moorekou@gmail.com>2016-04-14 16:21:02 -0400
commit429650ab7cf4eaebd470003c734c98c93537984a (patch)
tree699bf0d1ac665d14dce26ad303b476a8697838ce /desktop-utilities/lumina-terminal/TermWindow.cpp
parentClean up a bit more of the terminal widget/interactions. (diff)
downloadlumina-429650ab7cf4eaebd470003c734c98c93537984a.tar.gz
lumina-429650ab7cf4eaebd470003c734c98c93537984a.tar.bz2
lumina-429650ab7cf4eaebd470003c734c98c93537984a.zip
Get some more of the terminal cleaned up. Now "vi" has partial support (still no functional arrow keys though)
Diffstat (limited to 'desktop-utilities/lumina-terminal/TermWindow.cpp')
-rw-r--r--desktop-utilities/lumina-terminal/TermWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop-utilities/lumina-terminal/TermWindow.cpp b/desktop-utilities/lumina-terminal/TermWindow.cpp
index 1e82437d..82f71e6b 100644
--- a/desktop-utilities/lumina-terminal/TermWindow.cpp
+++ b/desktop-utilities/lumina-terminal/TermWindow.cpp
@@ -36,7 +36,7 @@ TermWindow::TermWindow(QSettings *set) : QWidget(0, Qt::Window | Qt::BypassWindo
ANIM->setDuration(300); //1/3 second animation
connect(ANIM, SIGNAL(finished()), this, SLOT(AnimFinished()) );
//Create the keyboard shortcuts
- hideS = new QShortcut(QKeySequence(Qt::Key_Escape),this);
+ //hideS = new QShortcut(QKeySequence(Qt::Key_Escape),this);
closeS = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_Q),this);
newTabS = new QShortcut(QKeySequence::AddTab,this);
closeTabS = new QShortcut(QKeySequence::Close,this);
@@ -52,7 +52,7 @@ TermWindow::TermWindow(QSettings *set) : QWidget(0, Qt::Window | Qt::BypassWindo
connect(tabWidget, SIGNAL(currentChanged(int)), this, SLOT(focusOnWidget()) );
connect(closeTabS, SIGNAL(activated()), this, SLOT(Close_Tab()) );
connect(newTabS, SIGNAL(activated()), this, SLOT(New_Tab()) );
- connect(hideS, SIGNAL(activated()), this, SLOT(HideWindow()) );
+ //connect(hideS, SIGNAL(activated()), this, SLOT(HideWindow()) );
connect(closeS, SIGNAL(activated()), this, SLOT(CloseWindow()) );
connect(prevTabS, SIGNAL(activated()), this, SLOT(Prev_Tab()) );
connect(nextTabS, SIGNAL(activated()), this, SLOT(Next_Tab()) );
bgstack15