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
486fa101
Commit
486fa101
authored
May 11, 2019
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib: add ability to disable magic functions
Fixes #5499 Fixes #5569 Fixes #6338 Fixes #6654 Fixes #6255 Fixes #7632 Closes #7763 Co-authored-by:
Daniel Galán y Martins
<
git@galan.de
>
parent
4585c666
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
misc.zsh
lib/misc.zsh
+3
-3
zshrc.zsh-template
templates/zshrc.zsh-template
+3
-0
No files found.
lib/misc.zsh
View file @
486fa101
## Load smart urls if available
# bracketed-paste-magic is known buggy in zsh 5.1.1 (only), so skip it there; see #4434
autoload
-Uz
is-at-least
autoload
-Uz
is-at-least
if
[[
$ZSH_VERSION
!=
5.1.1
]]
;
then
# *-magic is known buggy in some versions; disable if so
if
[[
$DISABLE_MAGIC_FUNCTIONS
!=
true
]]
;
then
for
d
in
$fpath
;
do
for
d
in
$fpath
;
do
if
[[
-e
"
$d
/url-quote-magic"
]]
;
then
if
[[
-e
"
$d
/url-quote-magic"
]]
;
then
if
is-at-least 5.1
;
then
if
is-at-least 5.1
;
then
...
...
templates/zshrc.zsh-template
View file @
486fa101
...
@@ -32,6 +32,9 @@ ZSH_THEME="robbyrussell"
...
@@ -32,6 +32,9 @@ ZSH_THEME="robbyrussell"
# Uncomment the following line to change how often to auto-update (in days).
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13
# export UPDATE_ZSH_DAYS=13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS=true
# Uncomment the following line to disable colors in ls.
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# DISABLE_LS_COLORS="true"
...
...
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