Skip to content

Commit

Permalink
sftp hotkey
Browse files Browse the repository at this point in the history
  • Loading branch information
liangwang committed Jun 25, 2023
1 parent dbac25e commit 5db6365
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 15 deletions.
8 changes: 4 additions & 4 deletions tabby-core/src/configDefaults.linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ hotkeys:
reopen-tab:
- 'Ctrl-Shift-Z'
toggle-last-tab: []
rename-tab:
- 'Ctrl-Shift-R'
next-tab:
- 'Ctrl-Shift-Right'
- 'Ctrl-Tab'
Expand All @@ -20,9 +18,11 @@ hotkeys:
- 'Ctrl-Shift-PageDown'
rearrange-panes:
- 'Ctrl-Shift'
duplicate-tab: []
restart-tab: []
duplicate-tab: ['Ctrl-Shift-D']
restart-tab: ['Ctrl-Shift-R']
reconnect-tab: []
sftp-tab:
- 'Ctrl-Shift-S'
explode-tab:
- 'Ctrl-Shift-.'
combine-tabs:
Expand Down
8 changes: 4 additions & 4 deletions tabby-core/src/configDefaults.macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ hotkeys:
reopen-tab:
- '⌘-Shift-T'
toggle-last-tab: []
rename-tab:
- '⌘-R'
next-tab:
- 'Ctrl-Tab'
previous-tab:
Expand Down Expand Up @@ -37,9 +35,11 @@ hotkeys:
tab-9:
- '⌘-9'
tab-10: []
duplicate-tab: []
restart-tab: []
duplicate-tab: ['⌘-Shift-D']
restart-tab: ['⌘-Shift-R']
reconnect-tab: []
sftp-tab:
- '⌘-Shift-S'
explode-tab:
- '⌘-Shift-.'
combine-tabs:
Expand Down
8 changes: 4 additions & 4 deletions tabby-core/src/configDefaults.windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ hotkeys:
reopen-tab:
- 'Ctrl-Shift-Z'
toggle-last-tab: []
rename-tab:
- 'Ctrl-Shift-R'
next-tab:
- 'Ctrl-Shift-Right'
- 'Ctrl-Tab'
Expand All @@ -21,9 +19,11 @@ hotkeys:
- 'Ctrl-Shift-PageDown'
rearrange-panes:
- 'Ctrl-Shift'
duplicate-tab: []
restart-tab: []
duplicate-tab: ['Ctrl-Shift-D']
restart-tab: ['Ctrl-Shift-R']
reconnect-tab: []
sftp-tab:
- 'Ctrl-Shift-S'
explode-tab:
- 'Ctrl-Shift-.'
combine-tabs:
Expand Down
49 changes: 46 additions & 3 deletions tabby-core/src/configDefaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,60 @@ hotkeys:
__nonStructural: true
profile-selectors:
__nonStructural: true
profiles: []
profiles:
- type: local
name: ssh2sftp_win_template
icon: fas fa-terminal
options:
command: /usr/bin/sftp
args:
- '-oStrictHostKeyChecking=no'
- '-oServerAliveInterval=30'
- '-oServerAliveCountMax=1051200'
- '-oTCPKeepAlive=yes'
env: {}
cwd: ''
group: ssh2sftp_template
id: local:custom:ssh2sftp_win_template:c617da05-d05c-482d-8ca6-3c7eb99452e9
- type: local
name: ssh2sftp_linux_template
icon: fas fa-terminal
options:
command: /usr/bin/sftp
args:
- '-oStrictHostKeyChecking=no'
- '-oServerAliveInterval=30'
- '-oServerAliveCountMax=1051200'
- '-oTCPKeepAlive=yes'
env: {}
cwd: ''
group: ssh2sftp_template
id: local:custom:ssh2sftp_linux_template:6c4bcc75-f690-482a-a882-40e1c9851a3d
- type: local
name: ssh2sftp_mac_template
icon: fas fa-terminal
options:
command: /usr/local/opt/openssh/bin/sftp
args:
- '-oStrictHostKeyChecking=no'
- '-oServerAliveInterval=30'
- '-oServerAliveCountMax=1051200'
- '-oTCPKeepAlive=yes'
env: {}
cwd: ''
id: local:custom:ssh2sftp_mac_template:33162a26-7807-4c5e-ac2d-68cd2d9a4a24
group: ssh2sftp_template

profileDefaults:
__nonStructural: true
ssh:
disableDynamicTitle: true
recoverTabs: true
enableAnalytics: true
enableWelcomeTab: true
enableWelcomeTab: false
electronFlags:
- ['force_discrete_gpu', '0']
enableAutomaticUpdates: true
enableAutomaticUpdates: false
version: 1
vault: null
encrypted: false
Expand Down

0 comments on commit 5db6365

Please sign in to comment.