From 23bf98e6bbdd0f0d2109f0f681802b6af8133091 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Mon, 26 Sep 2022 17:20:33 +0200 Subject: [PATCH] Remove unused __fish_cursor_1337 function Last use removed in 011af34d62d400dda7cb2d47595eeea00824cd00 --- share/functions/__fish_cursor_1337.fish | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 share/functions/__fish_cursor_1337.fish diff --git a/share/functions/__fish_cursor_1337.fish b/share/functions/__fish_cursor_1337.fish deleted file mode 100644 index ec32ff434..000000000 --- a/share/functions/__fish_cursor_1337.fish +++ /dev/null @@ -1,13 +0,0 @@ -# Set the cursor using the '\e]1337;' sequence recognized by iTerm2 on macOS and possibly other -# terminals. -function __fish_cursor_1337 -d 'Set cursor using OSC command 1337' - set -l shape $argv[1] - switch "$shape" - case block - echo -en '\e]1337;CursorShape=0\x7' - case underscore - echo -en '\e]1337;CursorShape=2\x7' - case line - echo -en '\e]1337;CursorShape=1\x7' - end -end