Skip to content

Commit

Permalink
zathura done
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMozdian committed Jan 27, 2024
1 parent b4dd0f7 commit 4f9969d
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
\usepackage{listings}
\usepackage{color}

\usepackage[T1]{fontenc}


\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
Expand Down Expand Up @@ -131,10 +133,10 @@

Some of the key commands to do so:
\begin{itemize}
\item ":tabnew" or ":tabnew <filename>" $\rightarrow$ opens new tab
\item ":tabnew" or ":tabnew $<$filename$>$" $\rightarrow$ opens new tab
\item "gt" $\rightarrow$ switch to the next tab
\item "gT" $\rightarrow$ switch to the previous tab
\item ":tabclose" $\rightarrow$ tabclose
\item ":tabclose" $\rightarrow$ close tab
\end{itemize}

\subsubsection{Folding}
Expand Down Expand Up @@ -205,7 +207,7 @@

\end{itemize}

There are of them (these methodes) but I think it suffices to say how usefull and important is this concept in programming, and it is the answer to why should we give credit to the tools which prevent this.
There are many of them (these methodes) but I think it suffices to say how usefull and important is this concept in programming, and it is the answer to why should we give credit to the tools which prevent this.


\subsection{GNU/Linux Bash Scripting}
Expand All @@ -220,6 +222,18 @@
and "fzf" uses fuzzy searching, so combinded with eachother,
it provides an interactive way to search and select files and directories from the current directory using fuzzy matching, enhancing navigation within the terminal.

\subsubsection{Using fzf to find you favorite PDF}
Because of shortage of time, in this part, I just type the answers:
\begin{itemize}

\item fd -e PDF

\item fd -e PDF | fzf

\end{itemize}

\subsubsection{Opening the file using Zathura}
zathura "\$(fd -e PDF | fzf)"



Expand Down

0 comments on commit 4f9969d

Please sign in to comment.