diff options
author | Marco De Bortoli <marco.debortoli@just-eat.com> | 2016-11-01 15:49:50 +1100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-11-02 11:00:27 +0100 |
commit | d47a7221924b4fa0b1859913d505f50a6c276da1 (patch) | |
tree | cc60e1e207b044f4e2f758364a45f5a4e202ff8e /plugins/common-aliases | |
parent | 80924959c4f41bcebe7b7c667f2d7489bf8fcb74 (diff) | |
download | zsh-d47a7221924b4fa0b1859913d505f50a6c276da1.tar.gz zsh-d47a7221924b4fa0b1859913d505f50a6c276da1.tar.bz2 zsh-d47a7221924b4fa0b1859913d505f50a6c276da1.zip |
PHP suffix alias should be removed
PHP can be executed as CLI script but due to the automated attempt
to add browser support to that extension such ability is prevented
in certain circumstances.
Diffstat (limited to 'plugins/common-aliases')
-rw-r--r-- | plugins/common-aliases/common-aliases.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/common-aliases/common-aliases.plugin.zsh b/plugins/common-aliases/common-aliases.plugin.zsh index 128db6e5f..0908c8a38 100644 --- a/plugins/common-aliases/common-aliases.plugin.zsh +++ b/plugins/common-aliases/common-aliases.plugin.zsh @@ -54,7 +54,7 @@ alias mv='mv -i' # depends on the SUFFIX :) if is-at-least 4.2.0; then # open browser on urls - _browser_fts=(htm html de org net com at cx nl se dk dk php) + _browser_fts=(htm html de org net com at cx nl se dk dk) for ft in $_browser_fts ; do alias -s $ft=$BROWSER ; done _editor_fts=(cpp cxx cc c hh h inl asc txt TXT tex) |