edit function and some minor stuff
authorJosuer08 <josuer08@gmail.com>
Tue, 9 Feb 2021 00:26:19 +0000 (19:26 -0500)
committerJosuer08 <josuer08@gmail.com>
Tue, 9 Feb 2021 00:26:19 +0000 (19:26 -0500)
.config/bashrc/alias
.config/bashrc/functions
.local/bin/vicat [new file with mode: 0755]

index 74eddaea7fb97064443060ac508d34c77eefe9af..8484109235946965dffb16e3b85722fd84a73aad 100644 (file)
@@ -26,8 +26,6 @@ alias byebye='shutdown now'
 
 
 
-# use highlight for colored cat
-alias ccat='highlight --out-format=ansi'
 
 # wifi available
 alias wifi='nmcli d wifi';
index a930aa469f5a3eb2393c26404f65a20c842f0103..4692b7a574cc1d16bf903498430d3a8f085a6a9b 100644 (file)
@@ -6,7 +6,7 @@ mdpdf () { pandoc "$1".md -t beamer -o "$1".pdf ;}
 metadata () { echo "Salida del comando stat" ; stat "$1" ; echo "Salida del comando ls -lisan" ; ls -lisan "$1" ; echo "salida del comando exiftool" ; exiftool "$1" ;}
 # activates the autocd mode
 shopt -s autocd
-edit () { du -a -L "$1" | awk '{print $2}' | fzf | xargs -r "$VISUAL" ;}
+edit () { du -a -L "$1" | awk '{print $2}' | fzf --multi --preview 'vicat {1}' | xargs -r "$VISUAL" ;}
 
 function cdls() {
     DIR="$*";
@@ -20,12 +20,6 @@ function cdls() {
 }
 
 
-#vicat is a color and line number cat
-
-function vicat() {
-  ccat $@ | nl;
-
-}
 
 
 #top10 commands
diff --git a/.local/bin/vicat b/.local/bin/vicat
new file mode 100755 (executable)
index 0000000..688027d
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+highlight --out-format=ansi "$@" | nl;