How do I use the Vim diff mode without folding?
You can use the following command-line to start Vim with two filenames and use the diff mode without folding:
$ vim -o file1 file2 "+windo set diff scrollbind scrollopt+=hor nowrap"
If you like vertically split windows, then replace “-o” with “-O”.
Read free Software Algorithms and Computer Science Books by CodeAhoy Learn.
Introduction to Recursion and Backtracking