aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_cursor_konsole.fish
diff options
context:
space:
mode:
authorGravatar Maxim Gonchar <gmaxfl@gmail.com>2014-01-20 17:12:32 +0400
committerGravatar Maxim Gonchar <gmaxfl@gmail.com>2014-01-20 17:12:32 +0400
commit71992158bf18c85f70828825c1b6cf77123f3d36 (patch)
tree5459056d3f111c62e35cd97559da939cfcda8987 /share/functions/__fish_cursor_konsole.fish
parent1514ab8ec5e4d7effe5639bf51b04b1e1f97b1b0 (diff)
Retab again
default_keybindings are left with tabs as it was in the beginning
Diffstat (limited to 'share/functions/__fish_cursor_konsole.fish')
-rw-r--r--share/functions/__fish_cursor_konsole.fish18
1 files changed, 9 insertions, 9 deletions
diff --git a/share/functions/__fish_cursor_konsole.fish b/share/functions/__fish_cursor_konsole.fish
index 12d23c69..acdcb0de 100644
--- a/share/functions/__fish_cursor_konsole.fish
+++ b/share/functions/__fish_cursor_konsole.fish
@@ -1,11 +1,11 @@
function __fish_cursor_konsole -d 'Set cursor (konsole)'
- set -l shape $argv[1]
- switch "$shape"
- case block
- echo -en '\e]50;CursorShape=0\x7'
- case underscore
- echo -en '\e]50;CursorShape=2\x7'
- case line
- echo -en '\e]50;CursorShape=1\x7'
- end
+ set -l shape $argv[1]
+ switch "$shape"
+ case block
+ echo -en '\e]50;CursorShape=0\x7'
+ case underscore
+ echo -en '\e]50;CursorShape=2\x7'
+ case line
+ echo -en '\e]50;CursorShape=1\x7'
+ end
end