-
Notifications
You must be signed in to change notification settings - Fork 9
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
command not working automatically; need to hit ENTER key in tab to execute commands #7
Comments
Hi! I'm having the same issue. My config looks like this:
Using Tabby 1.0.170. Opening the tab works fine. After pressing Enter twice both commands get succesfully executed. And this may be a bit offtopic but I haven't found any information about this: Is it possible to open a new Tab and split it? In Tabby you can split a Tab with "Ctrl+E" or "Ctrl+D". (So you got multiple Panes in a single Tab) |
I'm also looking for split tab functionality |
Amazing tool overall, but having the same issue as mentioned above. The newly opened workspaces require the ENTER key to load all the commands and the tab name defined in the config. Thank you for this amazing plugin, and please fix this when you can! |
I have this issue too and it started happening while starting to use the plugin on Ubuntu 22.04. I have been using the same workspace configs for months on Windows 10 without any issue. After looking at the code, it seems that in the /**
* Description. Builds workspace based on a given configuration. Opens tabs and customises them using the given values
* @param config The workspace config.
*/
async buildWorkspace(config: TabConfig[]): Promise<void> {
if (config) {
const profiles = await this.profileService.getProfiles();
for (const element of config) {
const selectedProfile = this.findTerminalProfile(profiles, element);
const tab = (await this.profileService.openNewTabForProfile(
selectedProfile,
)) as BaseTerminalTabComponent;
const subscription = tab.focused$.subscribe(() => {
subscription.unsubscribe();
setTimeout(() => {
this.customizeTab(tab, element);
}, 50);
});
}
}
} |
trying to have a workspave with this default directory
tabs open but CD command not working
color: '#03fccf'
commands:
I have so many errors in the console... Not sure if related
I found that in fact it kind of works but I have to hit
ENTER
key in the tab for the cd command to execute. So 100% a bug hereThe text was updated successfully, but these errors were encountered: