INCLUDE_DATA

Archive for Programming

Starting with Haskell

Recently I’ve taken it upon myself to learn Haskell. I haven’t had much time lately to work on programming projects at home, so I felt it was time to start something again. I decided to learn Haskell since I’ve never truly learnt a functional programming language. I’ve tried some functional programming some during a couple [...]

Comments

Ctags for PHP 5

In an earlier post I wrote about how to use Ctags with Vim. Unfortunately ctags doesn’t support PHP 5 yet. The creators of ctags anticipated a scenario of unknown languages, so they made it easy to customize the parsing behaviour. A blog post about a similar solution can be found at the Phly, boy, [...]

Comments (2)

Using Ctags with Vim

An important feature that all modern IDEs have is the ability to go directly to the definition of a function, or class, from where it is used. This feature is naturally available in Vim as well.
Vim doesn’t have any built-in project feature, so an external program has to be used to create the function [...]

Comments