TerminalOne
TerminalOne copied to clipboard
Add rename tab functionality
Related to #41
Add functionality to rename tabs.
- Add
renameTab
function inpackages/terminal/app/page.tsx
to handle renaming tabs. - Update
Page
component to include a button for renaming tabs and display the renamed tab names. - Add
tabName
prop toTab
component inpackages/terminal/components/Tab/index.tsx
and update it to display thetabName
instead oftabId
. - Add a button for renaming tabs in
TitleBar
component inpackages/terminal/components/TitleBar/index.tsx
. - Add
renameTab
function inConfigModule
inpackages/app/src/nativeBridge/modules/configModule.ts
to handle renaming tabs. - Add
renameTab
function inApplicationModule
inpackages/app/src/nativeBridge/modules/applicationModule.ts
to handle renaming tabs.
For more details, open the Copilot Workspace session.