refactor(config): migrate C1 aliases call sites to self-identifying guard

This commit is contained in:
2026-08-17 21:12:56 -04:00
parent 77c68558b2
commit 04fd832974
19 changed files with 120 additions and 18 deletions
+4 -1
View File
@@ -4,6 +4,9 @@
# CATEGORY
# 01-file-and-directory
#
# COMPONENT
# aliases/filesystem
#
# SYNOPSIS
# mkdir [args...]
#
@@ -20,7 +23,7 @@
# mkdir ~/projects/myapp/src
function mkdir --description 'Execute mkdir'
# Opinionated guard (C1): fall back to bare command mkdir when disabled.
if not __fish_config_op_enabled __fish_config_op_aliases
if not __fish_config_op_enabled (status current-function)
command mkdir $argv
return $status
end