Summary: | New tab shows local terminal instead of remote when running konsole via ssh kio | ||
---|---|---|---|
Product: | [Applications] konsole | Reporter: | Maximiliano Bertacchini <maxiberta> |
Component: | general | Assignee: | Konsole Developer <konsole-devel> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | adaptee, alex-kostjukov, anthony.renoux, bookwood, g111, maurokino, Stefan.Borggraefe, tsdogs |
Priority: | NOR | ||
Version: | 2.8 | ||
Target Milestone: | --- | ||
Platform: | Fedora RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 4.9.0 | |
Sentry Crash Report: | |||
Attachments: |
This patch adds a "Clone Current Tab" action
Updated "Duplicate Tab" patch for Konsole |
Description
Maximiliano Bertacchini
2012-01-26 21:22:23 UTC
Thanks for reporting. Yes, your guess for bug 184788 is right. The behavior is changed mainly because it is often confusing and annoying, although handy in some cases. "New Tab" action triggered though shortcut (Ctrl+Shift+T by default) should always open new tab using the default profile. That's the most intuitive way and what most users would expect. So the problem is users might have different expectation of what "New Tab" should do in that case. I personally prefer the current way over the old way, because it at least allow users to open local shell in new tab, while the old way might make it impossible if no profile is set to "show in menu". As I have suggested in bug 254976, one solution could be adding a new action dedicated for the lost handy feature: "Clone Tab". Finally, there is a trick at the moment: use "konsole --profile some-ssh-profile" (or use the Konsole sessions plugin for krunner) instead of "konsole -e ssh user@host". Then "New Tab" will behave like "Clone tab". However, I personally see that as a hidden bug so it might stop working sometime later. Created attachment 68244 [details]
This patch adds a "Clone Current Tab" action
Comment on attachment 68244 [details]
This patch adds a "Clone Current Tab" action
This patch adds a new "Clone Tab" action which creates a new tab and copies the command and arguments from the current session into the new one. Its shortcut is Ctrl+Alt+C.
I'm using this patched konsole and so far it's working fine. And multiple ssh sessions are back :D
(In reply to comment #3) > (From update of attachment 68244 [details]) > This patch adds a new "Clone Tab" action which creates a new tab and copies the > command and arguments from the current session into the new one. Its shortcut > is Ctrl+Alt+C. > > I'm using this patched konsole and so far it's working fine. And multiple ssh > sessions are back :D Thanks for the patch. However, There are some problems : 1). It changes konsoleui.rc without increasing the version number. Actually, I'm not sure whether that new action should be accessible through menu. At least, putting "Clone Tab" near "Close Tab" is a little problematic, since they are very similar in the English locale. 2). Its default shortcut is Ctrl+Shift+C, conflicting with the "Copy" action. 3). What that action does is not fully "clone". It only clones the command of current session, but all other settings(color theme, encoding, etc) are from the default profile. The appropriate way is to find out the profile(either permanent or temporary) associated with current session, then use that profile to create new tab. Unfortunately, due to the way how command line option "-e" is processed , that way does not work as expected at the moment. So I think this issue needs to wait for some time :) (In reply to comment #4) Thanks for your suggestions. Here's an updated patch. > 1). It changes konsoleui.rc without increasing the version number. > Actually, I'm not sure whether that new action should be accessible through > menu. At least, putting "Clone Tab" near "Close Tab" is a little problematic, > since they are very similar in the English locale. Updated konsoleui.rc version, and action renamed as "Duplicate Tab". > 2). Its default shortcut is Ctrl+Shift+C, conflicting with the "Copy" action. Shortcut is now Ctrl+Shift+D, which has no conflicts AFAIK. > 3). What that action does is not fully "clone". It only clones the command of > current session, but all other settings(color theme, encoding, etc) are from > the default profile. The appropriate way is to find out the profile(either > permanent or temporary) associated with current session, then use that profile > to create new tab. Unfortunately, due to the way how command line option "-e" > is processed , that way does not work as expected at the moment. This action now gets the profile of the current session from SessionManager and uses it to create the new one. Created attachment 68308 [details]
Updated "Duplicate Tab" patch for Konsole
Sorry, I didn't express myself clear enough when I said "this issue needs to wait for some time". I mean I would like to do some clean up of related code before fixing this issue. That would make the needed change smaller and cleaner, IMHO. Anyway, thanks for your following-up :) I have created a review request at https://git.reviewboard.kde.org/r/103859/. Feel free to leave your comment there. Git commit 56acddac933b96c10c782a918a419f6aaf4b2702 by Jekyll Wu. Committed on 10/02/2012 at 19:37. Pushed by jekyllwu into branch 'master'. Add 'Clone Tab' action for cloning current tab This action will create new tab/session using the same settings(command, colors, etc) used in current tab/session. At this moment, this action does not always clone current tab/session 100%. For example, If you change the scrollback setting of current session temporarily through context menu or dbus method, this action won't clone the temporary change. Another example is the tab title. On the other hand, this action works quite well with command line options(-e, -p, etc) and the 'konsoleprofile' utility. Related: bug 254976 FIXED-IN:4.9.0 REVIEW:103859 DIGEST: M +3 -1 desktop/konsoleui.rc M +23 -0 src/MainWindow.cpp M +2 -0 src/MainWindow.h http://commits.kde.org/konsole/56acddac933b96c10c782a918a419f6aaf4b2702 *** Bug 296524 has been marked as a duplicate of this bug. *** *** Bug 296960 has been marked as a duplicate of this bug. *** *** Bug 297852 has been marked as a duplicate of this bug. *** *** Bug 298398 has been marked as a duplicate of this bug. *** *** Bug 313903 has been marked as a duplicate of this bug. *** |