mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
Upgrade git:// and http:// URLs to https://
Work on fish-shell/fish-site#47 [ci skip]
This commit is contained in:
parent
ce61ada623
commit
40de253b3a
|
@ -1,15 +1,15 @@
|
|||
[fish](http://fishshell.com/) - the friendly interactive shell [![Build Status](https://travis-ci.org/fish-shell/fish-shell.svg?branch=master)](https://travis-ci.org/fish-shell/fish-shell)
|
||||
[fish](https://fishshell.com/) - the friendly interactive shell [![Build Status](https://travis-ci.org/fish-shell/fish-shell.svg?branch=master)](https://travis-ci.org/fish-shell/fish-shell)
|
||||
================================================
|
||||
|
||||
fish is a smart and user-friendly command line shell for OS X, Linux, and the rest of the family. fish includes features like syntax highlighting, autosuggest-as-you-type, and fancy tab completions that just work, with no configuration required.
|
||||
|
||||
For more on fish's design philosophy, see the [design document](http://fishshell.com/docs/current/design.html).
|
||||
For more on fish's design philosophy, see the [design document](https://fishshell.com/docs/current/design.html).
|
||||
|
||||
## Quick Start
|
||||
|
||||
fish generally works like other shells, like bash or zsh. A few important differences can be found at <http://fishshell.com/docs/current/tutorial.html> by searching for the magic phrase "unlike other shells".
|
||||
fish generally works like other shells, like bash or zsh. A few important differences can be found at <https://fishshell.com/docs/current/tutorial.html> by searching for the magic phrase "unlike other shells".
|
||||
|
||||
Detailed user documentation is available by running `help` within fish, and also at <http://fishshell.com/docs/current/index.html>
|
||||
Detailed user documentation is available by running `help` within fish, and also at <https://fishshell.com/docs/current/index.html>
|
||||
|
||||
## Building
|
||||
|
||||
|
|
4
debian/control
vendored
4
debian/control
vendored
|
@ -6,8 +6,8 @@ Uploaders: David Adam <zanchey@ucc.gu.uwa.edu.au>
|
|||
Build-Depends: debhelper (>= 9.0.0), libncurses5-dev, autoconf, autotools-dev, dh-autoreconf, gettext
|
||||
# When libpcre2-dev is available on all supported Debian versions, add a dependency on that.
|
||||
Standards-Version: 3.9.4
|
||||
Homepage: http://fishshell.com/
|
||||
Vcs-Git: git://github.com/fish-shell/fish-shell.git
|
||||
Homepage: https://fishshell.com/
|
||||
Vcs-Git: https://github.com/fish-shell/fish-shell.git
|
||||
Vcs-Browser: https://github.com/fish-shell/fish-shell
|
||||
|
||||
Package: fish
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
\section introduction Introduction
|
||||
|
||||
This is the documentation for `fish`, the friendly interactive shell. `fish` is a user friendly commandline shell intended mostly for interactive use. A shell is a program used to execute other programs. For the latest information on `fish`, please visit the <a href="http://fishshell.com/">`fish` homepage</a>.
|
||||
This is the documentation for `fish`, the friendly interactive shell. `fish` is a user friendly commandline shell intended mostly for interactive use. A shell is a program used to execute other programs. For the latest information on `fish`, please visit the <a href="https://fishshell.com/">`fish` homepage</a>.
|
||||
|
||||
|
||||
\section syntax Syntax overview
|
||||
|
|
|
@ -9,7 +9,7 @@ $extrastylesheet
|
|||
</head>
|
||||
<body>
|
||||
<div id="top" class="qindex"><!-- do not close this div here, it is closed by doxygen! -->
|
||||
<a href="http://fishshell.com/"><code>fish</code> shell</a>
|
||||
<a href="https://fishshell.com/"><code>fish</code> shell</a>
|
||||
|
|
||||
<a href="index.html">Documentation</a>
|
||||
|
|
||||
|
|
|
@ -6,5 +6,5 @@ confdir=@extra_confdir@
|
|||
|
||||
Name: fish
|
||||
Description: fish, the friendly interactive shell
|
||||
URL: http://fishshell.com/
|
||||
URL: https://fishshell.com/
|
||||
Version: @fish_build_version@
|
||||
|
|
|
@ -6,7 +6,7 @@ Release: 0.%{?dist}
|
|||
|
||||
License: GPL-2.0
|
||||
Group: System/Shells
|
||||
URL: http://fishshell.com/
|
||||
URL: https://fishshell.com/
|
||||
|
||||
Source0: %{name}_@VERSION@.orig.tar.gz
|
||||
BuildRequires: ncurses-devel gettext gcc-c++ autoconf
|
||||
|
|
|
@ -125,7 +125,7 @@ function help --description 'Show help for the fish shell'
|
|||
else
|
||||
# Go to the web. Only include one dot in the version string
|
||||
set -l version_string (echo $FISH_VERSION| cut -d . -f 1,2)
|
||||
set page_url http://fishshell.com/docs/$version_string/$fish_help_page
|
||||
set page_url https://fishshell.com/docs/$version_string/$fish_help_page
|
||||
end
|
||||
|
||||
# OS X /usr/bin/open swallows fragments (anchors), so use osascript
|
||||
|
|
|
@ -854,7 +854,7 @@ void history_t::get_string_representation(wcstring *result, const wcstring &sepa
|
|||
|
||||
// Append new items. Note that in principle we could use const_reverse_iterator, but we do not
|
||||
// because reverse_iterator is not convertible to const_reverse_iterator. See
|
||||
// http://github.com/fish-shell/fish-shell/issues/431.
|
||||
// https://github.com/fish-shell/fish-shell/issues/431.
|
||||
for (history_item_list_t::reverse_iterator iter = new_items.rbegin(); iter < new_items.rend();
|
||||
++iter) {
|
||||
// Skip a pending item if we have one.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// all internal commands use wide characters and hence this library is useful.
|
||||
//
|
||||
// If you want to use this version of getopt in your program, download the fish sourcecode,
|
||||
// available at <a href='http://fishshell.com'>the fish homepage</a>. Extract the sourcode, copy
|
||||
// available at <a href='https://fishshell.com'>the fish homepage</a>. Extract the sourcode, copy
|
||||
// wgetopt.c and wgetopt.h into your program directory, include wgetopt.h in your program, and use
|
||||
// all the regular getopt functions, prefixing every function, global variable and structure with a
|
||||
// 'w', and use only wide character strings. There are no other functional changes in this version
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// all internal commands use wide characters and hence this library is useful.
|
||||
//
|
||||
// If you want to use this version of getopt in your program,
|
||||
// 1. Download the fish sourcecode, available at http://fishshell.com
|
||||
// 1. Download the fish sourcecode, available at https://fishshell.com
|
||||
// 2. Extract the sourcode
|
||||
// 3. Copy wgetopt.cpp and wgetopt.h into your program directory,
|
||||
// 4. #include wgetopt.h in your program
|
||||
|
|
Loading…
Reference in New Issue
Block a user