Tag Archives: vim

Vim Casts

http://vimcasts.org/ – So good.

Posted in #pttjweir | Tagged | Leave a comment

Using MacVim as your git mergetool

Install MacVim and the command line tool, mvim. Then in your ~/.gitconfig add this, thusly (replacing the path to mvim with the correct one): [merge] tool = mvim[mergetool “mvim”] cmd=/Users/tjweir/bin/mvim -d -g $LOCAL $MERGED $REMOTE keepbackup=false Then you can “git … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Vim Tips: window splits

I use Vim for pretty much everything on every machine I use. Using Vim requires constant learning of all the commands. Sometimes commands that I use get pushed out of my head by newer commands. Such is the case with … Continue reading

Posted in General | Tagged | Comments Off

Liftweb + ctags + vim

[Updated: 2008/12/10] This is how I set up /Lift/, ctags, and vim (on OS X and Ubuntu): Add some scala definition to ctags: ty@Astra:~$ cat /home/ty/.ctags –langdef=scala –langmap=scala:.scala –regex-scala=/^[ \t]*class[ \t]+([a-zA-Z0-9_]+)/\1/c,classes/ –regex-scala=/^[ \t]*trait[ \t]+([a-zA-Z0-9_]+)/\1/t,traits/ –regex-scala=/^[ \t]*type[ \t]+([a-zA-Z0-9_]+)/\1/T,types/ –regex-scala=/^[ \t]*def[ \t]+([a-zA-Z0-9_\?]+)/\1/m,methods/ … Continue reading

Posted in General | Tagged , , , | Comments Off

Presentation on Vim

Vim has been my editor of choice for a long time and I try to expand my knowledge of commands all the time. I was particularly impressed with “Vim for PHP Programmers” by Andrei Zmievski. It’s well worth a read … Continue reading

Posted in Development | Tagged | Comments Off

Vim blogging plugin

I’ve switched to vimpress as my blogging utility. I like it more than the web interface of wordpress. Plus is one more thing that I can do from the comfort of Vim. Beautiful vim.

Posted in Personal | Tagged , , | Comments Off

Taskpaper and Vim.

Taskpaper is for “…Mac users who want a simpler way to stay organized and get things done. TaskPaper is a simple to-do list that’s surprisingly adept. Unlike the competition, TaskPaper’s text based interface is focused on paper-like simplicity.” It’s cool, … Continue reading

Posted in os x, software | Tagged , , , , | Comments Off