Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
ee4910e3
Unverified
Commit
ee4910e3
authored
Oct 12, 2022
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: show full hyperlinks in Konsole (#10964)
Fixes #10964
parent
f80cf120
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
install.sh
tools/install.sh
+8
-2
upgrade.sh
tools/upgrade.sh
+8
-2
No files found.
tools/install.sh
View file @
ee4910e3
...
...
@@ -156,11 +156,17 @@ supports_hyperlinks() {
return
0
fi
# Windows Terminal
or Konsole also support
hyperlinks
if
[
-n
"
$WT_SESSION
"
]
||
[
-n
"
$KONSOLE_VERSION
"
]
;
then
# Windows Terminal
also supports
hyperlinks
if
[
-n
"
$WT_SESSION
"
]
;
then
return
0
fi
# Konsole supports hyperlinks, but it's an opt-in setting that can't be detected
# https://github.com/ohmyzsh/ohmyzsh/issues/10964
# if [ -n "$KONSOLE_VERSION" ]; then
# return 0
# fi
return
1
}
...
...
tools/upgrade.sh
View file @
ee4910e3
...
...
@@ -78,11 +78,17 @@ supports_hyperlinks() {
return
0
fi
# Windows Terminal
or Konsole also support
hyperlinks
if
[
-n
"
$WT_SESSION
"
]
||
[
-n
"
$KONSOLE_VERSION
"
]
;
then
# Windows Terminal
also supports
hyperlinks
if
[
-n
"
$WT_SESSION
"
]
;
then
return
0
fi
# Konsole supports hyperlinks, but it's an opt-in setting that can't be detected
# https://github.com/ohmyzsh/ohmyzsh/issues/10964
# if [ -n "$KONSOLE_VERSION" ]; then
# return 0
# fi
return
1
}
...
...
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