I love vim, but:- http://www.vim.org/ http://www.sublimetext.com/ Which one would you want to use?
Vim 7.4 is released
71–80 of 126 posts
Re: Vim 7.4 is released
#72Re: Vim 7.4 is released
#73MacVim dont't have lion or moutain lion style native scrollbar still.
I turned them off completely. I found that the line numbers and file position in the status line was more than enough to get my bearings, and it looks nicer without the scrollbars. In ~/.gvimrc: " no toolbar set go-=T " no right scrollbar set go-=r " no left scollbar set go-=L
Re: Vim 7.4 is released
#74:help version7.4 has all the details, but the two most significant ones cited are "New regexp engine" and "A more pythonic Python interface." Of the former, the help file says: What is now called the "old" regexp engine uses a backtracking algorithm. It tries to match the pattern with the text in one way, and when that fails it goes back and tries another way. This works fine for simple patterns, but complex patterns…
Good to see the new regex engine is now shipped by default. It's been in development for quite a long time, held up mostly because of so many edge cases. The initial work was done in a 2008 Summer of Code project: http://code.google.com/p/vim-soc2008-regexp/source/list but there were lots of fiddly issues with character classes and Unicode handling, a need for exact equivalence to the old regex engine to avoid arbitr…
Re: Vim 7.4 is released
#75Script to assemble last vim from source under Debian/Ubuntu: https://gist.github.com/liverlin/5274228
Re: Vim 7.4 is released
#76Earlier quoted context omitted.
The one offering the best product. Or are you saying you are judging by appearance?
I think it's a fair point, judging by appearances may be instinctual if not conscious. The current git website ( http://git-scm.com/ ) looks the way it does because of an effort to replace the old one ( http://web.archive.org/web/20120101013850/http://git-scm.com... and https://github.com/blog/1125-new-git-homepage ).
Re: Vim 7.4 is released
#77I've just updated my unofficial Mac OS X build (featuring alloy's native sidebar with a file tree): https://github.com/rcarmo/macvim/releases/tag/7.4 It's a tad controversial, I know, but I find it vastly more friendly than NERDTree, and I know quite a few people were looking for alloy's builds a while back. EDIT: screenshot, from an older build: https://f.cloud.github.com/assets/392683/793013/469e0c62-ebd...
Re: Vim 7.4 is released
#78I love vim, but:- http://www.vim.org/ http://www.sublimetext.com/ Which one would you want to use?
I adore Sublime Text, and use it where I can, but there are instances where I need to work on something remotely. Bug fixes, git rebasing, etc; and that's where I lean on Vim.
Re: Vim 7.4 is released
#79Earlier quoted context omitted.
It sounds like someone read Russ Cox's work on regexp. http://swtch.com/~rsc/regexp/ To future regexp implementors: Do it this way first!
It sounds like someone read Russ Cox's work on regexp. Russ Cox? You know that regular expressions have existed since Kleene's first proposals, and everyone with a CS degrees knows that you can compile them to deterministic finite state automata. Right?
Re: Vim 7.4 is released
#80Going to wait for the update to come via chocolatey: http://chocolatey.org/packages/vim
How is Chocolatey? Does it feel Unixy enough for someone moving from Unix to Windows?