-
-
Notifications
You must be signed in to change notification settings - Fork 118
Ensure terminal pane shell location correct when opened #1574
New issue
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
1446cec
Save terminal-pane state explicitly - destroy signal unsuitable
jeremypw 3737cda
Use common action to set active project
jeremypw 68eb0fb
Disambiguate action name
jeremypw c303756
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw d738599
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw debbf2d
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw dd04b48
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw 1b24dfe
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw 8b9c7b3
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw 6d25e42
Match self in get_project_for_file
jeremypw 20b82ba
Lose FileView.ACTION_SET_PROJECT_ACTIVE call MainWindow action directly
jeremypw 4e451de
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw eb54627
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw 0751854
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw b505e03
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw a985df6
Merge branch 'master' into jeremypw/terminal-pane/save-state
jeremypw 367b672
Revert renaming function
jeremypw 7635580
Merge branch 'master' into jeremypw/terminal-pane/save-state
zeebok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems recursive no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so; there are two actions named
ACTION_SET_ACTIVE_PROJECTbut with different prefixes. TheFileViewone activates theMainWindowone as well as doing some local stuff. I'll check and see if this can be clarified.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oof yeah, what's the reason for having two actions? Why can't we call the same one always?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MainWindow action is called by two different FileView actions (ACTION_CLOSE_OTHER_PROJECTS and ACTION_SET_ACTIVE_PROJECT) and there is some pre- and post- processing specific to FileView involved so not sure if that's possible. I could change the name of the FileView action to avoid confusion I guess.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have now lost the FileView action altogether and call the MainWindow one directly. Need to check for regressions but seems OK. There didn't seem a reason to re-write the opened-folders setting on changing active project and this way should improve consistency of behaviour.