Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
39e98ed4
Commit
39e98ed4
authored
Mar 24, 2014
by
Michael Albinus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tramp.texi (Frequently Asked Questions): Add fish shell settings.
parent
33f0ba7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
doc/misc/ChangeLog
doc/misc/ChangeLog
+4
-0
doc/misc/tramp.texi
doc/misc/tramp.texi
+17
-4
No files found.
doc/misc/ChangeLog
View file @
39e98ed4
2014-03-24 Michael Albinus <michael.albinus@gmx.de>
* tramp.texi (Frequently Asked Questions): Add fish shell settings.
2014-03-21 Glenn Morris <rgm@gnu.org>
* ede.texi (ede-linux):
...
...
doc/misc/tramp.texi
View file @
39e98ed4
...
...
@@ -3053,15 +3053,28 @@ setting the cursor at the top of the buffer, and applying the expression
If it fails, or the cursor is not moved at the end of the buffer, your
prompt is not recognized correctly.
A special problem is the zsh
, which uses left
-
hand side and right
-
h
and
side prompts in parallel. Therefore, it is necessary to disable the
zsh line editor on the remote host. You shall add to @file
{
~
/
.zshrc
}
the following command:
A special problem is the zsh
shell, which uses left
-
hand side
and
right
-
hand side prompts in parallel. Therefore, it is necessary to
disable the zsh line editor on the remote host. You shall add to
@file
{
~
/
.zshrc
}
the following command:
@example
[
$TERM
=
"dumb"
]
&&
unsetopt zle
&&
PS
1
=
'$ '
@end example
Similar fancy prompt settings are known from the fish shell. Here you
must add in @file
{
~
/
.config
/
fish
/
config.fish
}
:
@example
function fish
_
prompt
if test $TERM
=
"dumb"
echo "
\$
"
else
@dots
{}
end
end
@end example
Furthermore it has been reported, that @value
{
tramp
}
(
like sshfs,
incidentally
)
doesn't work with WinSSHD due to strange prompt settings.
...
...
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