Search Results

11
votes

What GUIs exist for GIT on Windows

The git wiki has a comprehensive list of frontends and interfaces. …
3
votes

Does Perl’s /m regex modifier match differently on Windows?

There is no magic \n. Both \n and \r always mean exactly one character, and on all ASCII-based platforms that is \cJ and \cM respect …
2
votes

In Vim, what is the simplest way to join all lines in a file into a single line?

I’m surprised no one even mentioned the other way: :%s/\n/ / I am equally surprised that no one pointed out that the range 1,$ has a shorthand that’s …