Files
fish-config/functions/_qalc_eval.fish
T
rootiest e651566e14 docs(functions): split RETURNS into EXIT STATUS and stdout RETURNS
RETURNS previously conflated fish's $status exit code with genuine
stdout/printed output, e.g. rm listing "0/1" as if they were print
values rather than exit codes. Rename RETURNS to EXIT STATUS across
all 83 documented functions, and reintroduce RETURNS as a distinct
label reserved for the 15 functions that actually print to stdout.

Update build-manual.py's ENTRY_HEADS to render Exit Status before
Returns, manualtools.py's SECTIONS constant, and AGENTS.md's label
order and label-usage guidance to match. Add two verify-manual.py
regression tests: EXIT STATUS bodies must never contain stray
stdout/printed language, and Returns: must always render after
Exit Status: when both are present. Regenerate docs/fish-config.md.
2026-07-26 16:41:57 -04:00

36 lines
944 B
Fish

# Copyright (C) 2026 Rootiest
# SPDX-License-Identifier: AGPL-3.0-or-later
# SYNOPSIS
# _qalc_eval
#
# DESCRIPTION
# Reads the current commandline buffer and evaluates it as a qalc
# expression, printing the result. Clears the buffer and repaints
# after evaluation. No-ops if qalc is not installed or the buffer
# is empty. Intended to be bound to a key in key_bindings.fish.
#
# EXIT STATUS
# 1 qalc not found in PATH
#
# EXAMPLE
# bind \cr _qalc_eval
function _qalc_eval
type -q qalc || return 1
# Get the current command line buffer
set -l cmd (commandline)
# If the buffer isn't empty, run it through qalc
if test -n "$cmd"
echo
# Passes the buffer to qalc
# -t (terse) is optional, remove it if you want the full verbose output
echo "$cmd" | qalc
# Clear the command line for the next task
commandline -r ""
commandline -f repaint
end
end