Explorar el Código

Get rid of useless alias

Name function right in the first place, instead naming it wrong and
renaming it using alias.
Alois Mahdal hace 10 años
padre
commit
b0bc751a10
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1
    2
      dotfiles/bash/main.bashrc

+ 1
- 2
dotfiles/bash/main.bashrc Ver fichero

@@ -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'