diff -Nru fish-3.6.0-275-gf2f7d1d18/debian/changelog fish-3.6.0-280-gd839fea74/debian/changelog --- fish-3.6.0-275-gf2f7d1d18/debian/changelog 2023-03-04 23:36:48.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/debian/changelog 2023-03-05 07:06:39.000000000 +0000 @@ -1,8 +1,8 @@ -fish (3.6.0-275-gf2f7d1d18-1~xenial) xenial; urgency=medium +fish (3.6.0-280-gd839fea74-1~xenial) xenial; urgency=medium - * Snapshot build from f2f7d1d18 + * Snapshot build from d839fea74 - -- David Adam Sun, 05 Mar 2023 07:36:48 +0800 + -- David Adam Sun, 05 Mar 2023 15:06:39 +0800 fish (2.7.1-1) testing; urgency=medium diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/common.rs fish-3.6.0-280-gd839fea74/fish-rust/src/common.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/common.rs 2023-03-04 23:05:11.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/common.rs 2023-03-05 06:54:17.000000000 +0000 @@ -2,6 +2,7 @@ use crate::wchar_ext::WExt; use crate::wchar_ffi::c_str; use crate::wchar_ffi::{wstr, WCharFromFFI, WString}; +use std::os::fd::AsRawFd; use std::{ffi::c_uint, mem}; /// A scoped manager to save the current value of some variable, and optionally set it to a new @@ -116,6 +117,47 @@ pub const fn assert_sync() {} +/// A rusty port of the C++ `write_loop()` function from `common.cpp`. This should be deprecated in +/// favor of native rust read/write methods at some point. +/// +/// Returns the number of bytes written or an IO error. +pub fn write_loop(fd: &Fd, buf: &[u8]) -> std::io::Result { + let fd = fd.as_raw_fd(); + let mut total = 0; + while total < buf.len() { + let written = + unsafe { libc::write(fd, buf[total..].as_ptr() as *const _, buf.len() - total) }; + if written < 0 { + let errno = errno::errno().0; + if matches!(errno, libc::EAGAIN | libc::EINTR) { + continue; + } + return Err(std::io::Error::from_raw_os_error(errno)); + } + total += written as usize; + } + Ok(total) +} + +/// A rusty port of the C++ `read_loop()` function from `common.cpp`. This should be deprecated in +/// favor of native rust read/write methods at some point. +/// +/// Returns the number of bytes read or an IO error. +pub fn read_loop(fd: &Fd, buf: &mut [u8]) -> std::io::Result { + let fd = fd.as_raw_fd(); + loop { + let read = unsafe { libc::read(fd, buf.as_mut_ptr() as *mut _, buf.len()) }; + if read < 0 { + let errno = errno::errno().0; + if matches!(errno, libc::EAGAIN | libc::EINTR) { + continue; + } + return Err(std::io::Error::from_raw_os_error(errno)); + } + return Ok(read as usize); + } +} + /// Asserts that a slice is alphabetically sorted by a [`&wstr`] `name` field. /// /// Mainly useful for static asserts/const eval. diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/fd_monitor.rs fish-3.6.0-280-gd839fea74/fish-rust/src/fd_monitor.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/fd_monitor.rs 2023-03-04 23:05:11.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/fd_monitor.rs 2023-03-05 06:54:17.000000000 +0000 @@ -3,7 +3,8 @@ use std::sync::{Arc, Mutex}; use std::time::{Duration, Instant}; -use self::fd_monitor_ffi::{new_fd_event_signaller, FdEventSignaller, ItemWakeReason}; +pub use self::fd_monitor_ffi::ItemWakeReason; +use self::fd_monitor_ffi::{new_fd_event_signaller, FdEventSignaller}; use crate::fd_readable_set::FdReadableSet; use crate::fds::AutoCloseFd; use crate::ffi::void_ptr; @@ -93,7 +94,20 @@ #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)] pub struct FdMonitorItemId(u64); +impl From for u64 { + fn from(value: FdMonitorItemId) -> Self { + value.0 + } +} + +impl From for FdMonitorItemId { + fn from(value: u64) -> Self { + FdMonitorItemId(value) + } +} + type FfiCallback = extern "C" fn(*mut AutoCloseFd, u8, void_ptr); +type NativeCallback = Box; /// The callback type used by [`FdMonitorItem`]. It is passed a mutable reference to the /// `FdMonitorItem`'s [`FdMonitorItem::fd`] and [the reason](ItemWakeupReason) for the wakeup. The @@ -107,7 +121,7 @@ enum FdMonitorCallback { None, #[allow(clippy::type_complexity)] - Native(Box), + Native(NativeCallback), Ffi(FfiCallback /* fn ptr */, void_ptr /* param */), } @@ -139,6 +153,11 @@ } impl FdMonitorItem { + /// Returns the id for this `FdMonitorItem` that is registered with the [`FdMonitor`]. + pub fn id(&self) -> FdMonitorItemId { + self.item_id + } + /// Return the duration until the timeout should trigger or `None`. A return of `0` means we are /// at or past the timeout. fn remaining_time(&self, now: &Instant) -> Option { @@ -208,16 +227,27 @@ } } - fn new() -> Self { - Self { - callback: FdMonitorCallback::None, - fd: AutoCloseFd::empty(), - timeout: None, - last_time: None, + pub fn new( + fd: AutoCloseFd, + timeout: Option, + callback: Option, + ) -> Self { + FdMonitorItem { + fd, + timeout, + callback: match callback { + Some(callback) => FdMonitorCallback::Native(callback), + None => FdMonitorCallback::None, + }, item_id: FdMonitorItemId(0), + last_time: None, } } + pub fn set_callback(&mut self, callback: NativeCallback) { + self.callback = FdMonitorCallback::Native(callback); + } + fn set_callback_ffi(&mut self, callback: *const u8, param: *const u8) { // Safety: we are just marshalling our function pointers with identical definitions on both // sides of the ffi bridge as void pointers to keep cxx bridge happy. Whether we invoke the @@ -228,6 +258,18 @@ } } +impl Default for FdMonitorItem { + fn default() -> Self { + Self { + callback: FdMonitorCallback::None, + fd: AutoCloseFd::empty(), + timeout: None, + last_time: None, + item_id: FdMonitorItemId(0), + } + } +} + // cxx bridge does not support "static member functions" in C++ or rust, so we need a top-level fn. fn new_fd_monitor_ffi() -> Box { Box::new(FdMonitor::new()) @@ -245,7 +287,7 @@ // raw function as a void pointer or as a typed fn that helps us keep track of what we're // doing is unsafe in all cases, so might as well make the best of it. let callback = unsafe { std::mem::transmute(callback) }; - let mut item = FdMonitorItem::new(); + let mut item = FdMonitorItem::default(); item.fd.reset(fd); item.callback = FdMonitorCallback::Ffi(callback, param.into()); if timeout_usecs != FdReadableSet::kNoTimeout { @@ -360,7 +402,7 @@ // raw function as a void pointer or as a typed fn that helps us keep track of what we're // doing is unsafe in all cases, so might as well make the best of it. let callback = unsafe { std::mem::transmute(callback) }; - let mut item = FdMonitorItem::new(); + let mut item = FdMonitorItem::default(); item.fd.reset(fd); item.callback = FdMonitorCallback::Ffi(callback, param.into()); if timeout_usecs != FdReadableSet::kNoTimeout { diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/fds.rs fish-3.6.0-280-gd839fea74/fish-rust/src/fds.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/fds.rs 2023-03-04 23:05:11.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/fds.rs 2023-03-05 06:54:17.000000000 +0000 @@ -1,5 +1,6 @@ use crate::ffi; use nix::unistd; +use std::io::{Read, Write}; use std::os::unix::io::{AsRawFd, FromRawFd, RawFd}; /// A helper type for managing and automatically closing a file descriptor @@ -11,6 +12,33 @@ fd_: RawFd, } +impl Read for AutoCloseFd { + fn read(&mut self, buf: &mut [u8]) -> std::io::Result { + unsafe { + match libc::read(self.as_raw_fd(), buf.as_mut_ptr() as *mut _, buf.len()) { + -1 => Err(std::io::Error::from_raw_os_error(errno::errno().0)), + bytes => Ok(bytes as usize), + } + } + } +} + +impl Write for AutoCloseFd { + fn write(&mut self, buf: &[u8]) -> std::io::Result { + unsafe { + match libc::write(self.as_raw_fd(), buf.as_ptr() as *const _, buf.len()) { + -1 => Err(std::io::Error::from_raw_os_error(errno::errno().0)), + bytes => Ok(bytes as usize), + } + } + } + + fn flush(&mut self) -> std::io::Result<()> { + // We don't buffer anything so this is a no-op. + Ok(()) + } +} + #[cxx::bridge] mod autoclose_fd_t { extern "Rust" { diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/lib.rs fish-3.6.0-280-gd839fea74/fish-rust/src/lib.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/lib.rs 2023-03-04 23:05:11.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/lib.rs 2023-03-05 06:54:17.000000000 +0000 @@ -3,6 +3,9 @@ #![allow(non_upper_case_globals)] #![allow(clippy::needless_return)] #![allow(clippy::manual_is_ascii_check)] +#![allow(clippy::bool_assert_comparison)] +#![allow(clippy::uninlined_format_args)] +#![allow(clippy::derivable_impls)] #[macro_use] mod common; @@ -41,3 +44,6 @@ mod builtins; mod env; mod re; + +// Don't use `#[cfg(test)]` here to make sure ffi tests are built and tested +mod tests; diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/tests/fd_monitor.rs fish-3.6.0-280-gd839fea74/fish-rust/src/tests/fd_monitor.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/tests/fd_monitor.rs 1970-01-01 00:00:00.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/tests/fd_monitor.rs 2023-03-05 06:54:17.000000000 +0000 @@ -0,0 +1,190 @@ +use std::io::Write; +use std::os::fd::AsRawFd; +use std::sync::atomic::{AtomicBool, AtomicU64, AtomicUsize, Ordering}; +use std::sync::{Arc, Mutex}; +use std::time::Duration; + +use crate::fd_monitor::{FdMonitor, FdMonitorItem, FdMonitorItemId, ItemWakeReason}; +use crate::fds::{make_autoclose_pipes, AutoCloseFd}; +use crate::ffi_tests::add_test; + +/// Helper to make an item which counts how many times its callback was invoked. +/// +/// This could be structured differently to avoid the `Mutex` on `writer`, but it's not worth it +/// since this is just used for test purposes. +struct ItemMaker { + pub did_timeout: AtomicBool, + pub length_read: AtomicUsize, + pub pokes: AtomicUsize, + pub total_calls: AtomicUsize, + item_id: AtomicU64, + pub always_exit: bool, + pub writer: Mutex, +} + +impl ItemMaker { + pub fn insert_new_into(monitor: &FdMonitor, timeout: Option) -> Arc { + Self::insert_new_into2(monitor, timeout, |_| {}) + } + + pub fn insert_new_into2( + monitor: &FdMonitor, + timeout: Option, + config: F, + ) -> Arc { + let pipes = make_autoclose_pipes().expect("fds exhausted!"); + let mut item = FdMonitorItem::new(pipes.read, timeout, None); + + let mut result = ItemMaker { + did_timeout: false.into(), + length_read: 0.into(), + pokes: 0.into(), + total_calls: 0.into(), + item_id: 0.into(), + always_exit: false, + writer: Mutex::new(pipes.write), + }; + + config(&mut result); + + let result = Arc::new(result); + let callback = { + let result = Arc::clone(&result); + move |fd: &mut AutoCloseFd, reason: ItemWakeReason| { + result.callback(fd, reason); + } + }; + item.set_callback(Box::new(callback)); + let item_id = monitor.add(item); + result.item_id.store(u64::from(item_id), Ordering::Relaxed); + + result + } + + fn item_id(&self) -> FdMonitorItemId { + self.item_id.load(Ordering::Relaxed).into() + } + + fn callback(&self, fd: &mut AutoCloseFd, reason: ItemWakeReason) { + let mut was_closed = false; + + match reason { + ItemWakeReason::Timeout => { + self.did_timeout.store(true, Ordering::Relaxed); + } + ItemWakeReason::Poke => { + self.pokes.fetch_add(1, Ordering::Relaxed); + } + ItemWakeReason::Readable => { + let mut buf = [0u8; 1024]; + let amt = + unsafe { libc::read(fd.as_raw_fd(), buf.as_mut_ptr() as *mut _, buf.len()) }; + assert_ne!(amt, -1, "read error!"); + self.length_read.fetch_add(amt as usize, Ordering::Relaxed); + was_closed = amt == 0; + } + _ => unreachable!(), + } + + self.total_calls.fetch_add(1, Ordering::Relaxed); + if self.always_exit || was_closed { + fd.close(); + } + } + + /// Write 42 bytes to our write end. + fn write42(&self) { + let buf = [0u8; 42]; + let mut writer = self.writer.lock().expect("Mutex poisoned!"); + writer + .write_all(&buf) + .expect("Error writing 42 bytes to pipe!"); + } +} + +add_test!("fd_monitor_items", || { + let monitor = FdMonitor::new(); + + // Items which will never receive data or be called. + let item_never = ItemMaker::insert_new_into(&monitor, None); + let item_huge_timeout = + ItemMaker::insert_new_into(&monitor, Some(Duration::from_millis(100_000_000))); + + // Item which should get no data and time out. + let item0_timeout = ItemMaker::insert_new_into(&monitor, Some(Duration::from_millis(16))); + + // Item which should get exactly 42 bytes then time out. + let item42_timeout = ItemMaker::insert_new_into(&monitor, Some(Duration::from_millis(16))); + + // Item which should get exactly 42 bytes and not time out. + let item42_no_timeout = ItemMaker::insert_new_into(&monitor, None); + + // Item which should get 42 bytes then get notified it is closed. + let item42_then_close = ItemMaker::insert_new_into(&monitor, Some(Duration::from_millis(16))); + + // Item which gets one poke. + let item_pokee = ItemMaker::insert_new_into(&monitor, None); + + // Item which should get a callback exactly once. + let item_oneshot = + ItemMaker::insert_new_into2(&monitor, Some(Duration::from_millis(16)), |item| { + item.always_exit = true; + }); + + item42_timeout.write42(); + item42_no_timeout.write42(); + item42_then_close.write42(); + item42_then_close + .writer + .lock() + .expect("Mutex poisoned!") + .close(); + item_oneshot.write42(); + + monitor.poke_item(item_pokee.item_id()); + + // May need to loop here to ensure our fd_monitor gets scheduled. See #7699. + for _ in 0..100 { + std::thread::sleep(Duration::from_millis(84)); + if item0_timeout.did_timeout.load(Ordering::Relaxed) { + break; + } + } + + drop(monitor); + + assert_eq!(item_never.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item_never.length_read.load(Ordering::Relaxed), 0); + assert_eq!(item_never.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item_huge_timeout.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item_huge_timeout.length_read.load(Ordering::Relaxed), 0); + assert_eq!(item_huge_timeout.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item0_timeout.length_read.load(Ordering::Relaxed), 0); + assert_eq!(item0_timeout.did_timeout.load(Ordering::Relaxed), true); + assert_eq!(item0_timeout.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item42_timeout.length_read.load(Ordering::Relaxed), 42); + assert_eq!(item42_timeout.did_timeout.load(Ordering::Relaxed), true); + assert_eq!(item42_timeout.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item42_no_timeout.length_read.load(Ordering::Relaxed), 42); + assert_eq!(item42_no_timeout.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item42_no_timeout.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item42_then_close.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item42_then_close.length_read.load(Ordering::Relaxed), 42); + assert_eq!(item42_then_close.total_calls.load(Ordering::Relaxed), 2); + assert_eq!(item42_then_close.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item_oneshot.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item_oneshot.length_read.load(Ordering::Relaxed), 42); + assert_eq!(item_oneshot.total_calls.load(Ordering::Relaxed), 1); + assert_eq!(item_oneshot.pokes.load(Ordering::Relaxed), 0); + + assert_eq!(item_pokee.did_timeout.load(Ordering::Relaxed), false); + assert_eq!(item_pokee.length_read.load(Ordering::Relaxed), 0); + assert_eq!(item_pokee.total_calls.load(Ordering::Relaxed), 1); + assert_eq!(item_pokee.pokes.load(Ordering::Relaxed), 1); +}); diff -Nru fish-3.6.0-275-gf2f7d1d18/fish-rust/src/tests/mod.rs fish-3.6.0-280-gd839fea74/fish-rust/src/tests/mod.rs --- fish-3.6.0-275-gf2f7d1d18/fish-rust/src/tests/mod.rs 1970-01-01 00:00:00.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/fish-rust/src/tests/mod.rs 2023-03-05 06:54:17.000000000 +0000 @@ -0,0 +1 @@ +mod fd_monitor; diff -Nru fish-3.6.0-275-gf2f7d1d18/src/fish_tests.cpp fish-3.6.0-280-gd839fea74/src/fish_tests.cpp --- fish-3.6.0-275-gf2f7d1d18/src/fish_tests.cpp 2023-03-04 23:05:11.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/src/fish_tests.cpp 2023-03-05 06:54:17.000000000 +0000 @@ -800,146 +800,6 @@ err(L"redirection_type_for_string failed on line %ld", (long)__LINE__); } -static void test_fd_monitor() { - say(L"Testing fd_monitor"); - - // Helper to make an item which counts how many times its callback is invoked. - struct item_maker_t : public noncopyable_t { - std::atomic did_timeout{false}; - std::atomic length_read{0}; - std::atomic pokes{0}; - std::atomic total_calls{0}; - uint64_t item_id{0}; - bool always_exit{false}; - std::unique_ptr> item; - autoclose_fd_t writer; - - void callback(autoclose_fd_t2 &fd, item_wake_reason_t reason) { - bool was_closed = false; - switch (reason) { - case item_wake_reason_t::Timeout: - this->did_timeout = true; - break; - case item_wake_reason_t::Poke: - this->pokes += 1; - break; - case item_wake_reason_t::Readable: - char buff[4096]; - ssize_t amt = read(fd.fd(), buff, sizeof buff); - this->length_read += amt; - was_closed = (amt == 0); - break; - } - total_calls += 1; - if (always_exit || was_closed) { - fd.close(); - } - } - - static void trampoline(autoclose_fd_t2 &fd, item_wake_reason_t reason, uint8_t *param) { - auto &instance = *(item_maker_t *)(param); - instance.callback(fd, reason); - } - - explicit item_maker_t(uint64_t timeout_usec) { - auto pipes = make_autoclose_pipes().acquire(); - writer = std::move(pipes.write); - item = std::make_unique>( - make_fd_monitor_item_t(pipes.read.acquire(), timeout_usec, - (uint8_t *)item_maker_t::trampoline, (uint8_t *)this)); - } - - // Write 42 bytes to our write end. - void write42() const { - char buff[42] = {0}; - (void)write_loop(writer.fd(), buff, sizeof buff); - } - }; - - constexpr uint64_t usec_per_msec = 1000; - - // Items which will never receive data or be called back. - item_maker_t item_never(kNoTimeout); - item_maker_t item_hugetimeout(100000000LLU * usec_per_msec); - - // Item which should get no data, and time out. - item_maker_t item0_timeout(16 * usec_per_msec); - - // Item which should get exactly 42 bytes, then time out. - item_maker_t item42_timeout(16 * usec_per_msec); - - // Item which should get exactly 42 bytes, and not time out. - item_maker_t item42_nottimeout(kNoTimeout); - - // Item which should get 42 bytes, then get notified it is closed. - item_maker_t item42_thenclose(16 * usec_per_msec); - - // Item which gets one poke. - item_maker_t item_pokee(kNoTimeout); - - // Item which should be called back once. - item_maker_t item_oneshot(16 * usec_per_msec); - item_oneshot.always_exit = true; - - { - auto monitor = make_fd_monitor_t(); - for (item_maker_t *item : - {&item_never, &item_hugetimeout, &item0_timeout, &item42_timeout, &item42_nottimeout, - &item42_thenclose, &item_pokee, &item_oneshot}) { - item->item_id = monitor->add(std::move(*(std::move(item->item)))); - } - item42_timeout.write42(); - item42_nottimeout.write42(); - item42_thenclose.write42(); - item42_thenclose.writer.close(); - item_oneshot.write42(); - monitor->poke_item(item_pokee.item_id); - - // May need to loop here to ensure our fd_monitor gets scheduled - see #7699. - for (int i = 0; i < 100; i++) { - std::this_thread::sleep_for(std::chrono::milliseconds(84)); - if (item0_timeout.did_timeout) { - break; - } - } - } - - do_test(!item_never.did_timeout); - do_test(item_never.length_read == 0); - do_test(item_never.pokes == 0); - - do_test(!item_hugetimeout.did_timeout); - do_test(item_hugetimeout.length_read == 0); - do_test(item_hugetimeout.pokes == 0); - - do_test(item0_timeout.length_read == 0); - do_test(item0_timeout.did_timeout); - do_test(item0_timeout.pokes == 0); - - do_test(item42_timeout.length_read == 42); - do_test(item42_timeout.did_timeout); - do_test(item42_timeout.pokes == 0); - - do_test(item42_nottimeout.length_read == 42); - do_test(!item42_nottimeout.did_timeout); - do_test(item42_nottimeout.pokes == 0); - - do_test(item42_thenclose.did_timeout == false); - do_test(item42_thenclose.length_read == 42); - do_test(item42_thenclose.total_calls == 2); - do_test(item42_thenclose.pokes == 0); - - do_test(!item_oneshot.did_timeout); - do_test(item_oneshot.length_read == 42); - do_test(item_oneshot.total_calls == 1); - do_test(item_oneshot.pokes == 0); - - do_test(!item_pokee.did_timeout); - do_test(item_pokee.length_read == 0); - do_test(item_pokee.total_calls == 1); - do_test(item_pokee.pokes == 1); -} - static void test_iothread() { say(L"Testing iothreads"); std::atomic shared_int{0}; @@ -7054,7 +6914,6 @@ {TEST_GROUP("perf_convert_ascii"), perf_convert_ascii, true}, {TEST_GROUP("convert_nulls"), test_convert_nulls}, {TEST_GROUP("tokenizer"), test_tokenizer}, - {TEST_GROUP("fd_monitor"), test_fd_monitor}, {TEST_GROUP("iothread"), test_iothread}, {TEST_GROUP("pthread"), test_pthread}, {TEST_GROUP("debounce"), test_debounce}, diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/.buildinfo fish-3.6.0-280-gd839fea74/user_doc/html/.buildinfo --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/.buildinfo 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/.buildinfo 2023-03-05 07:06:23.000000000 +0000 @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 34c693f46eac0eda318074e8b15b0f59 +config: 49bf9a480aee13b964776bd91b600cad tags: 645f666f9bcd5a90fca523b33c5a78b7 diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/abbr.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/abbr.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/abbr.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/abbr.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - abbr - manage fish abbreviations — fish-shell 3.6.0-275-gf2f7d1d18 documentation + abbr - manage fish abbreviations — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -238,7 +238,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/alias.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/alias.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/alias.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/alias.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - alias - create a function — fish-shell 3.6.0-275-gf2f7d1d18 documentation + alias - create a function — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -172,7 +172,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/and.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/and.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/and.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/and.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - and - conditionally execute a command — fish-shell 3.6.0-275-gf2f7d1d18 documentation + and - conditionally execute a command — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -149,7 +149,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/argparse.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/argparse.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/argparse.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/argparse.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - argparse - parse options passed to a fish script or function — fish-shell 3.6.0-275-gf2f7d1d18 documentation + argparse - parse options passed to a fish script or function — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -295,7 +295,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/begin.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/begin.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/begin.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/begin.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - begin - start a new block of code — fish-shell 3.6.0-275-gf2f7d1d18 documentation + begin - start a new block of code — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -161,7 +161,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/bg.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/bg.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/bg.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/bg.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - bg - send jobs to background — fish-shell 3.6.0-275-gf2f7d1d18 documentation + bg - send jobs to background — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -144,7 +144,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/bind.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/bind.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/bind.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/bind.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - bind - handle fish key bindings — fish-shell 3.6.0-275-gf2f7d1d18 documentation + bind - handle fish key bindings — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -396,7 +396,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/block.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/block.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/block.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/block.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - block - temporarily block delivery of events — fish-shell 3.6.0-275-gf2f7d1d18 documentation + block - temporarily block delivery of events — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -168,7 +168,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/break.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/break.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/break.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/break.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - break - stop the current inner loop — fish-shell 3.6.0-275-gf2f7d1d18 documentation + break - stop the current inner loop — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -155,7 +155,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/breakpoint.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/breakpoint.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/breakpoint.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/breakpoint.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - breakpoint - launch debug mode — fish-shell 3.6.0-275-gf2f7d1d18 documentation + breakpoint - launch debug mode — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -132,7 +132,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/builtin.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/builtin.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/builtin.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/builtin.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - builtin - run a builtin command — fish-shell 3.6.0-275-gf2f7d1d18 documentation + builtin - run a builtin command — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -149,7 +149,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/case.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/case.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/case.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/case.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - case - conditionally execute a block of commands — fish-shell 3.6.0-275-gf2f7d1d18 documentation + case - conditionally execute a block of commands — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/cdh.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/cdh.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/cdh.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/cdh.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - cdh - change to a recently visited directory — fish-shell 3.6.0-275-gf2f7d1d18 documentation + cdh - change to a recently visited directory — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -145,7 +145,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/cd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/cd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/cd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/cd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - cd - change directory — fish-shell 3.6.0-275-gf2f7d1d18 documentation + cd - change directory — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -156,7 +156,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/command.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/command.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/command.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/command.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - command - run a program — fish-shell 3.6.0-275-gf2f7d1d18 documentation + command - run a program — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -153,7 +153,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/commandline.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/commandline.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/commandline.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/commandline.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - commandline - set or get the current command line buffer — fish-shell 3.6.0-275-gf2f7d1d18 documentation + commandline - set or get the current command line buffer — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -222,7 +222,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/complete.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/complete.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/complete.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/complete.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - complete - edit command specific tab-completions — fish-shell 3.6.0-275-gf2f7d1d18 documentation + complete - edit command specific tab-completions — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -217,7 +217,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/contains.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/contains.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/contains.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/contains.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - contains - test if a word is present in a list — fish-shell 3.6.0-275-gf2f7d1d18 documentation + contains - test if a word is present in a list — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -168,7 +168,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/continue.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/continue.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/continue.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/continue.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - continue - skip the remainder of the current iteration of the current inner loop — fish-shell 3.6.0-275-gf2f7d1d18 documentation + continue - skip the remainder of the current iteration of the current inner loop — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -153,7 +153,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/count.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/count.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/count.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/count.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - count - count the number of elements of a list — fish-shell 3.6.0-275-gf2f7d1d18 documentation + count - count the number of elements of a list — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -156,7 +156,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/dirh.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/dirh.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/dirh.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/dirh.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - dirh - print directory history — fish-shell 3.6.0-275-gf2f7d1d18 documentation + dirh - print directory history — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -141,7 +141,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/dirs.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/dirs.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/dirs.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/dirs.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - dirs - print directory stack — fish-shell 3.6.0-275-gf2f7d1d18 documentation + dirs - print directory stack — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -145,7 +145,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/disown.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/disown.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/disown.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/disown.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - disown - remove a process from the list of jobs — fish-shell 3.6.0-275-gf2f7d1d18 documentation + disown - remove a process from the list of jobs — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -141,7 +141,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/echo.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/echo.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/echo.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/echo.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - echo - display a line of text — fish-shell 3.6.0-275-gf2f7d1d18 documentation + echo - display a line of text — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -183,7 +183,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/else.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/else.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/else.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/else.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - else - execute command if a condition is not met — fish-shell 3.6.0-275-gf2f7d1d18 documentation + else - execute command if a condition is not met — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -144,7 +144,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/emit.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/emit.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/emit.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/emit.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - emit - emit a generic event — fish-shell 3.6.0-275-gf2f7d1d18 documentation + emit - emit a generic event — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -148,7 +148,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/end.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/end.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/end.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/end.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - end - end a block of commands — fish-shell 3.6.0-275-gf2f7d1d18 documentation + end - end a block of commands — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -147,7 +147,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/eval.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/eval.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/eval.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/eval.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - eval - evaluate the specified commands — fish-shell 3.6.0-275-gf2f7d1d18 documentation + eval - evaluate the specified commands — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -142,7 +142,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/exec.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/exec.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/exec.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/exec.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - exec - execute command in current process — fish-shell 3.6.0-275-gf2f7d1d18 documentation + exec - execute command in current process — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -136,7 +136,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/exit.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/exit.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/exit.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/exit.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - exit - exit the shell — fish-shell 3.6.0-275-gf2f7d1d18 documentation + exit - exit the shell — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -133,7 +133,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/false.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/false.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/false.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/false.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - false - return an unsuccessful result — fish-shell 3.6.0-275-gf2f7d1d18 documentation + false - return an unsuccessful result — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -138,7 +138,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fg.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fg.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fg.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fg.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fg - bring job to foreground — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fg - bring job to foreground — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -142,7 +142,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_add_path.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_add_path.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_add_path.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_add_path.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_add_path - add to the path — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_add_path - add to the path — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -185,7 +185,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_breakpoint_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_breakpoint_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_breakpoint_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_breakpoint_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_breakpoint_prompt - define the prompt when stopped at a breakpoint — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_breakpoint_prompt - define the prompt when stopped at a breakpoint — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -150,7 +150,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_clipboard_copy.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_clipboard_copy.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_clipboard_copy.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_clipboard_copy.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_clipboard_copy - copy text to the system’s clipboard — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_clipboard_copy - copy text to the system’s clipboard — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -149,7 +149,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_clipboard_paste.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_clipboard_paste.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_clipboard_paste.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_clipboard_paste.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_clipboard_paste - get text from the system’s clipboard — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_clipboard_paste - get text from the system’s clipboard — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -150,7 +150,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_command_not_found.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_command_not_found.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_command_not_found.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_command_not_found.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_command_not_found - what to do when a command wasn’t found — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_command_not_found - what to do when a command wasn’t found — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -184,7 +184,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_config.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_config.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_config.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_config.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_config - start the web-based configuration interface — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_config - start the web-based configuration interface — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -163,7 +163,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_delta.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_delta.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_delta.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_delta.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_delta - compare functions and completions to the default — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_delta - compare functions and completions to the default — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -186,7 +186,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_git_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_git_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_git_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_git_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_git_prompt - output git information for use in a prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_git_prompt - output git information for use in a prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -245,7 +245,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_greeting.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_greeting.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_greeting.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_greeting.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_greeting - display a welcome message in interactive shells — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_greeting - display a welcome message in interactive shells — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -153,7 +153,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_hg_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_hg_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_hg_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_hg_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_hg_prompt - output Mercurial information for use in a prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_hg_prompt - output Mercurial information for use in a prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -176,7 +176,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish - the friendly interactive shell — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish - the friendly interactive shell — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -193,7 +193,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_indent.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_indent.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_indent.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_indent.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_indent - indenter and prettifier — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_indent - indenter and prettifier — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -153,7 +153,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_is_root_user.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_is_root_user.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_is_root_user.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_is_root_user.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_is_root_user - check if the current user is root — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_is_root_user - check if the current user is root — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -143,7 +143,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_key_reader.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_key_reader.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_key_reader.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_key_reader.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_key_reader - explore what characters keyboard keys send — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_key_reader - explore what characters keyboard keys send — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -171,7 +171,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_mode_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_mode_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_mode_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_mode_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_mode_prompt - define the appearance of the mode indicator — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_mode_prompt - define the appearance of the mode indicator — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -169,7 +169,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_opt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_opt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_opt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_opt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_opt - create an option specification for the argparse command — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_opt - create an option specification for the argparse command — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -170,7 +170,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_prompt - define the appearance of the command line prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_prompt - define the appearance of the command line prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -151,7 +151,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_right_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_right_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_right_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_right_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_right_prompt - define the appearance of the right-side command line prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_right_prompt - define the appearance of the right-side command line prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -143,7 +143,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_status_to_signal.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_status_to_signal.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_status_to_signal.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_status_to_signal.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_status_to_signal - convert exit codes to human-friendly signals — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_status_to_signal - convert exit codes to human-friendly signals — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_svn_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_svn_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_svn_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_svn_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_svn_prompt - output Subversion information for use in a prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_svn_prompt - output Subversion information for use in a prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -198,7 +198,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_title.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_title.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_title.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_title.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_title - define the terminal’s title — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_title - define the terminal’s title — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -150,7 +150,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_update_completions.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_update_completions.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_update_completions.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_update_completions.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_update_completions - update completions using manual pages — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_update_completions - update completions using manual pages — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -132,7 +132,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_vcs_prompt.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_vcs_prompt.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/fish_vcs_prompt.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/fish_vcs_prompt.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - fish_vcs_prompt - output version control system information for use in a prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + fish_vcs_prompt - output version control system information for use in a prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -156,7 +156,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/for.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/for.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/for.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/for.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - for - perform a set of commands multiple times — fish-shell 3.6.0-275-gf2f7d1d18 documentation + for - perform a set of commands multiple times — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -158,7 +158,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/funced.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/funced.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/funced.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/funced.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - funced - edit a function interactively — fish-shell 3.6.0-275-gf2f7d1d18 documentation + funced - edit a function interactively — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -158,7 +158,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/funcsave.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/funcsave.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/funcsave.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/funcsave.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - funcsave - save the definition of a function to the user’s autoload directory — fish-shell 3.6.0-275-gf2f7d1d18 documentation + funcsave - save the definition of a function to the user’s autoload directory — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -134,7 +134,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/function.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/function.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/function.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/function.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - function - create a function — fish-shell 3.6.0-275-gf2f7d1d18 documentation + function - create a function — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -204,7 +204,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/functions.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/functions.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/functions.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/functions.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - functions - print or erase functions — fish-shell 3.6.0-275-gf2f7d1d18 documentation + functions - print or erase functions — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -193,7 +193,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/help.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/help.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/help.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/help.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - help - display fish documentation — fish-shell 3.6.0-275-gf2f7d1d18 documentation + help - display fish documentation — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/history.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/history.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/history.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/history.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - history - show and manipulate command history — fish-shell 3.6.0-275-gf2f7d1d18 documentation + history - show and manipulate command history — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -204,7 +204,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/_.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/_.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/_.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/_.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - _ - call fish’s translations — fish-shell 3.6.0-275-gf2f7d1d18 documentation + _ - call fish’s translations — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/if.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/if.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/if.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/if.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - if - conditionally execute a command — fish-shell 3.6.0-275-gf2f7d1d18 documentation + if - conditionally execute a command — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -169,7 +169,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/isatty.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/isatty.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/isatty.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/isatty.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - isatty - test if a file descriptor is a terminal — fish-shell 3.6.0-275-gf2f7d1d18 documentation + isatty - test if a file descriptor is a terminal — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -151,7 +151,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/jobs.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/jobs.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/jobs.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/jobs.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - jobs - print currently running jobs — fish-shell 3.6.0-275-gf2f7d1d18 documentation + jobs - print currently running jobs — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/math.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/math.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/math.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/math.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - math - perform mathematics calculations — fish-shell 3.6.0-275-gf2f7d1d18 documentation + math - perform mathematics calculations — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -305,7 +305,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/nextd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/nextd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/nextd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/nextd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - nextd - move forward through directory history — fish-shell 3.6.0-275-gf2f7d1d18 documentation + nextd - move forward through directory history — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/not.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/not.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/not.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/not.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - not - negate the exit status of a job — fish-shell 3.6.0-275-gf2f7d1d18 documentation + not - negate the exit status of a job — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -142,7 +142,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/open.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/open.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/open.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/open.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - open - open file in its default application — fish-shell 3.6.0-275-gf2f7d1d18 documentation + open - open file in its default application — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -136,7 +136,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/or.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/or.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/or.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/or.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - or - conditionally execute a command — fish-shell 3.6.0-275-gf2f7d1d18 documentation + or - conditionally execute a command — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -148,7 +148,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/path.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/path.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/path.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/path.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - path - manipulate and check paths — fish-shell 3.6.0-275-gf2f7d1d18 documentation + path - manipulate and check paths — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -520,7 +520,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/popd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/popd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/popd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/popd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - popd - move through directory stack — fish-shell 3.6.0-275-gf2f7d1d18 documentation + popd - move through directory stack — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -156,7 +156,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prevd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prevd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prevd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prevd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - prevd - move backward through directory history — fish-shell 3.6.0-275-gf2f7d1d18 documentation + prevd - move backward through directory history — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/printf.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/printf.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/printf.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/printf.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - printf - display text according to a format string — fish-shell 3.6.0-275-gf2f7d1d18 documentation + printf - display text according to a format string — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -209,7 +209,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_hostname.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_hostname.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_hostname.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_hostname.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - prompt_hostname - print the hostname, shortened for use in the prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + prompt_hostname - print the hostname, shortened for use in the prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -144,7 +144,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_login.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_login.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_login.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_login.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - prompt_login - describe the login suitable for prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + prompt_login - describe the login suitable for prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -143,7 +143,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_pwd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_pwd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/prompt_pwd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/prompt_pwd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - prompt_pwd - print pwd suitable for prompt — fish-shell 3.6.0-275-gf2f7d1d18 documentation + prompt_pwd - print pwd suitable for prompt — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -168,7 +168,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/psub.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/psub.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/psub.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/psub.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - psub - perform process substitution — fish-shell 3.6.0-275-gf2f7d1d18 documentation + psub - perform process substitution — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -152,7 +152,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/pushd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/pushd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/pushd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/pushd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - pushd - push directory to directory stack — fish-shell 3.6.0-275-gf2f7d1d18 documentation + pushd - push directory to directory stack — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -165,7 +165,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/pwd.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/pwd.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/pwd.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/pwd.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - pwd - output the current working directory — fish-shell 3.6.0-275-gf2f7d1d18 documentation + pwd - output the current working directory — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -145,7 +145,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/random.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/random.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/random.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/random.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - random - generate random number — fish-shell 3.6.0-275-gf2f7d1d18 documentation + random - generate random number — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -169,7 +169,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/read.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/read.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/read.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/read.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - read - read line of input into variables — fish-shell 3.6.0-275-gf2f7d1d18 documentation + read - read line of input into variables — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -218,7 +218,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/realpath.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/realpath.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/realpath.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/realpath.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - realpath - convert a path to an absolute path without symlinks — fish-shell 3.6.0-275-gf2f7d1d18 documentation + realpath - convert a path to an absolute path without symlinks — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -139,7 +139,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/return.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/return.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/return.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/return.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - return - stop the current inner function — fish-shell 3.6.0-275-gf2f7d1d18 documentation + return - stop the current inner function — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/set_color.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/set_color.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/set_color.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/set_color.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - set_color - set the terminal color — fish-shell 3.6.0-275-gf2f7d1d18 documentation + set_color - set the terminal color — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -195,7 +195,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/set.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/set.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/set.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/set.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - set - display and change shell variables — fish-shell 3.6.0-275-gf2f7d1d18 documentation + set - display and change shell variables — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -303,7 +303,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/source.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/source.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/source.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/source.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - source - evaluate contents of file — fish-shell 3.6.0-275-gf2f7d1d18 documentation + source - evaluate contents of file — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -150,7 +150,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/status.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/status.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/status.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/status.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - status - query fish runtime information — fish-shell 3.6.0-275-gf2f7d1d18 documentation + status - query fish runtime information — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -199,7 +199,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-collect.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-collect.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-collect.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-collect.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-collect - join strings into one — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-collect - join strings into one — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -158,7 +158,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-escape.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-escape.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-escape.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-escape.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-escape - escape special characters — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-escape - escape special characters — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string - manipulate strings — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string - manipulate strings — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -775,7 +775,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-join0.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-join0.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-join0.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-join0.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-join0 - join strings with zero bytes — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-join0 - join strings with zero bytes — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -148,7 +148,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-join.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-join.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-join.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-join.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-join - join strings with delimiter — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-join - join strings with delimiter — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -148,7 +148,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-length.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-length.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-length.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-length.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-length - print string lengths — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-length - print string lengths — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -162,7 +162,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-lower.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-lower.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-lower.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-lower.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-lower - convert strings to lowercase — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-lower - convert strings to lowercase — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -130,7 +130,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-match.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-match.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-match.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-match.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-match - match substrings — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-match - match substrings — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -242,7 +242,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-pad.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-pad.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-pad.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-pad.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-pad - pad strings to a fixed width — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-pad - pad strings to a fixed width — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-repeat.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-repeat.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-repeat.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-repeat.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-repeat - multiply a string — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-repeat - multiply a string — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -154,7 +154,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-replace.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-replace.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-replace.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-replace.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-replace - replace substrings — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-replace - replace substrings — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -171,7 +171,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-shorten.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-shorten.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-shorten.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-shorten.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-shorten - shorten strings to a width, with an ellipsis — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-shorten - shorten strings to a width, with an ellipsis — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -189,7 +189,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-split0.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-split0.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-split0.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-split0.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-split0 - split on zero bytes — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-split0 - split on zero bytes — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -177,7 +177,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-split.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-split.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-split.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-split.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-split - split strings by delimiter — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-split - split strings by delimiter — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -177,7 +177,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-sub.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-sub.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-sub.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-sub.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-sub - extract substrings — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-sub - extract substrings — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -157,7 +157,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-trim.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-trim.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-trim.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-trim.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-trim - remove trailing whitespace — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-trim - remove trailing whitespace — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -143,7 +143,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-unescape.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-unescape.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-unescape.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-unescape.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-unescape - expand escape sequences — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-unescape - expand escape sequences — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -146,7 +146,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-upper.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-upper.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/string-upper.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/string-upper.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - string-upper - convert strings to uppercase — fish-shell 3.6.0-275-gf2f7d1d18 documentation + string-upper - convert strings to uppercase — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -130,7 +130,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/suspend.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/suspend.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/suspend.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/suspend.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - suspend - suspend the current shell — fish-shell 3.6.0-275-gf2f7d1d18 documentation + suspend - suspend the current shell — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -130,7 +130,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/switch.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/switch.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/switch.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/switch.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - switch - conditionally execute a block of commands — fish-shell 3.6.0-275-gf2f7d1d18 documentation + switch - conditionally execute a block of commands — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -155,7 +155,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/test.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/test.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/test.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/test.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - test - perform tests on files and text — fish-shell 3.6.0-275-gf2f7d1d18 documentation + test - perform tests on files and text — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -307,7 +307,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/time.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/time.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/time.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/time.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - time - measure how long a command or block takes — fish-shell 3.6.0-275-gf2f7d1d18 documentation + time - measure how long a command or block takes — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -180,7 +180,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/trap.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/trap.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/trap.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/trap.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - trap - perform an action when the shell receives a signal — fish-shell 3.6.0-275-gf2f7d1d18 documentation + trap - perform an action when the shell receives a signal — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -156,7 +156,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/true.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/true.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/true.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/true.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - true - return a successful result — fish-shell 3.6.0-275-gf2f7d1d18 documentation + true - return a successful result — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -139,7 +139,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/type.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/type.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/type.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/type.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - type - locate a command and describe its type — fish-shell 3.6.0-275-gf2f7d1d18 documentation + type - locate a command and describe its type — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -159,7 +159,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/ulimit.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/ulimit.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/ulimit.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/ulimit.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - ulimit - set or get resource usage limits — fish-shell 3.6.0-275-gf2f7d1d18 documentation + ulimit - set or get resource usage limits — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -202,7 +202,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/umask.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/umask.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/umask.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/umask.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - umask - set or get the file creation mode mask — fish-shell 3.6.0-275-gf2f7d1d18 documentation + umask - set or get the file creation mode mask — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -155,7 +155,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/vared.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/vared.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/vared.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/vared.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - vared - interactively edit the value of an environment variable — fish-shell 3.6.0-275-gf2f7d1d18 documentation + vared - interactively edit the value of an environment variable — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -136,7 +136,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/wait.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/wait.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/wait.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/wait.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - wait - wait for jobs to complete — fish-shell 3.6.0-275-gf2f7d1d18 documentation + wait - wait for jobs to complete — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -155,7 +155,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/while.html fish-3.6.0-280-gd839fea74/user_doc/html/cmds/while.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/cmds/while.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/cmds/while.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - while - perform a set of commands multiple times — fish-shell 3.6.0-275-gf2f7d1d18 documentation + while - perform a set of commands multiple times — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -142,7 +142,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/commands.html fish-3.6.0-280-gd839fea74/user_doc/html/commands.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/commands.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/commands.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Commands — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Commands — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -327,7 +327,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/completions.html fish-3.6.0-280-gd839fea74/user_doc/html/completions.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/completions.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/completions.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Writing your own completions — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Writing your own completions — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -216,7 +216,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/design.html fish-3.6.0-280-gd839fea74/user_doc/html/design.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/design.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/design.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Design — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Design — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -192,7 +192,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/faq.html fish-3.6.0-280-gd839fea74/user_doc/html/faq.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/faq.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/faq.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Frequently asked questions — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Frequently asked questions — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -453,7 +453,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/fish_for_bash_users.html fish-3.6.0-280-gd839fea74/user_doc/html/fish_for_bash_users.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/fish_for_bash_users.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/fish_for_bash_users.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Fish for bash users — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Fish for bash users — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -541,7 +541,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/genindex.html fish-3.6.0-280-gd839fea74/user_doc/html/genindex.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/genindex.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/genindex.html 2023-03-05 07:06:23.000000000 +0000 @@ -5,7 +5,7 @@ - Index — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Index — fish-shell 3.6.0-280-gd839fea74 documentation @@ -25,7 +25,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -686,7 +686,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/index.html fish-3.6.0-280-gd839fea74/user_doc/html/index.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/index.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/index.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Introduction — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Introduction — fish-shell 3.6.0-280-gd839fea74 documentation @@ -27,7 +27,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -270,7 +270,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/interactive.html fish-3.6.0-280-gd839fea74/user_doc/html/interactive.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/interactive.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/interactive.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Interactive use — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Interactive use — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -882,7 +882,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/language.html fish-3.6.0-280-gd839fea74/user_doc/html/language.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/language.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/language.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - The fish language — fish-shell 3.6.0-275-gf2f7d1d18 documentation + The fish language — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -1943,7 +1943,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/license.html fish-3.6.0-280-gd839fea74/user_doc/html/license.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/license.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/license.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - License — fish-shell 3.6.0-275-gf2f7d1d18 documentation + License — fish-shell 3.6.0-280-gd839fea74 documentation @@ -27,7 +27,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -266,7 +266,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/relnotes.html fish-3.6.0-280-gd839fea74/user_doc/html/relnotes.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/relnotes.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/relnotes.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Release notes — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Release notes — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -3948,7 +3948,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/search.html fish-3.6.0-280-gd839fea74/user_doc/html/search.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/search.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/search.html 2023-03-05 07:06:23.000000000 +0000 @@ -5,7 +5,7 @@ - Search — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Search — fish-shell 3.6.0-280-gd839fea74 documentation @@ -31,7 +31,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -118,7 +118,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/_static/documentation_options.js fish-3.6.0-280-gd839fea74/user_doc/html/_static/documentation_options.js --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/_static/documentation_options.js 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/_static/documentation_options.js 2023-03-05 07:06:23.000000000 +0000 @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '3.6.0-275-gf2f7d1d18', + VERSION: '3.6.0-280-gd839fea74', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff -Nru fish-3.6.0-275-gf2f7d1d18/user_doc/html/tutorial.html fish-3.6.0-280-gd839fea74/user_doc/html/tutorial.html --- fish-3.6.0-275-gf2f7d1d18/user_doc/html/tutorial.html 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/user_doc/html/tutorial.html 2023-03-05 07:06:23.000000000 +0000 @@ -6,7 +6,7 @@ - Tutorial — fish-shell 3.6.0-275-gf2f7d1d18 documentation + Tutorial — fish-shell 3.6.0-280-gd839fea74 documentation @@ -28,7 +28,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » @@ -713,7 +713,7 @@ style="width: 80px; height: 80px; vertical-align: middle; margin-top: -1px"/>
  • fish-shell »
  • - fish-shell 3.6.0-275-gf2f7d1d18 documentation » + fish-shell 3.6.0-280-gd839fea74 documentation » diff -Nru fish-3.6.0-275-gf2f7d1d18/version fish-3.6.0-280-gd839fea74/version --- fish-3.6.0-275-gf2f7d1d18/version 2023-03-04 23:36:33.000000000 +0000 +++ fish-3.6.0-280-gd839fea74/version 2023-03-05 07:06:23.000000000 +0000 @@ -1 +1 @@ -3.6.0-275-gf2f7d1d18 +3.6.0-280-gd839fea74