Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
c761f944
Commit
c761f944
authored
Nov 29, 2014
by
Wild Kat
Committed by
Bruno Pinto
Dec 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added documentation link for ssh helper plugin and further cleanup
parent
ad63831b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
plugins/README.markdown
plugins/README.markdown
+1
-0
plugins/ssh/README.md
plugins/ssh/README.md
+5
-5
plugins/ssh/ssh.fish
plugins/ssh/ssh.fish
+4
-4
No files found.
plugins/README.markdown
View file @
c761f944
...
...
@@ -31,6 +31,7 @@
*
__rbenv__ –
[
rbenv
](
https://github.com/sstephenson/rbenv
)
Ruby environment/version manager.
*
__replace__ – A port of
[
replace
](
https://github.com/thoughtbot/dotfiles/blob/master/bin/replace
)
.
*
__rvm__ –
[
RVM
](
http://rvm.io
)
Ruby version manager.
*
__ssh__ – ssh conservative $TERM value helper.
*
__sublime__ – Creates
`subl`
command line shortcut to launch
[
Sublime Text editor
](
http://sublimetext.com/
)
.
*
__tmux__ – Plugin to start tmux with support for 256 colours.
*
__vi-mode__ – Basic vi key bindings emulation for fish.
...
...
plugins/ssh/README.md
View file @
c761f944
## ssh conservative $TERM value helper
plugin
## ssh conservative $TERM value helper
Due to inconsistency of 256 color terminal support across
terminal applications, it may be desirable to force the
...
...
plugins/ssh/ssh.fish
View file @
c761f944
function ssh --description 'OpenSSH SSH client (remote login program) with a conservative $TERM value'
switch $TERM
case screen-256color
set -l
-
x TERM screen
set -lx TERM screen
command ssh $argv
case xterm-256color
set -l
-
x TERM xterm
set -lx TERM xterm
command ssh $argv
case '*'
command ssh $argv
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment