Procházet zdrojové kódy

Get rid of useless alias

Name function right in the first place, instead naming it wrong and
renaming it using alias.
Alois Mahdal před 10 roky
rodič
revize
b0bc751a10
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. 1
    2
      dotfiles/bash/main.bashrc

+ 1
- 2
dotfiles/bash/main.bashrc Zobrazit soubor

@@ -17,7 +17,7 @@ git() {
17 17
     fi
18 18
 }
19 19
 
20
-clear_to_bottom() {
20
+clsz() {
21 21
     tput clear; tput cup $(tput lines) 0
22 22
 }
23 23
 
@@ -35,7 +35,6 @@ export GLOBIGNORE=.:..
35 35
 # some more aliases
36 36
 alias cal='cal -m'
37 37
 alias cls='clear'
38
-alias clsz='clear_to_bottom'
39 38
 alias ll='ls -lh'
40 39
 alias lla='ls -lha'
41 40
 alias open='gnome-open'