mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
* temporary dvctr * start of work * fix: timeouts in windows * fish? * feat: better, working stuff * refactor: rename database-seeds to seeds/ * better * fdsaf * feat: don't let our container get owned by root * fix: better user handling * feat: falling asleep at my desk i yield to you what i have done * feat: autoadminify * docs: denote trickshot * feat: open in browser on launch * better seeds workings... * fix: dont kill shell * docs: mention dev/debs * fix: whoops * fix: make seeds load within the century * feat: rest of the containerisation * feat: new alias * style: fix linter errors * fix: bad call * fix: better justfile
18 lines
642 B
Fish
18 lines
642 B
Fish
function _tide_item_character
|
|
test $_tide_status = 0 && set_color $tide_character_color || set_color $tide_character_color_failure
|
|
|
|
set -q add_prefix || echo -ns ' '
|
|
|
|
test "$fish_key_bindings" = fish_default_key_bindings && echo -ns $tide_character_icon ||
|
|
switch $fish_bind_mode
|
|
case insert
|
|
echo -ns $tide_character_icon
|
|
case default
|
|
echo -ns $tide_character_vi_icon_default
|
|
case replace replace_one
|
|
echo -ns $tide_character_vi_icon_replace
|
|
case visual
|
|
echo -ns $tide_character_vi_icon_visual
|
|
end
|
|
end
|