I use the "Bird" style literate haskell, which requires all the code to look like this:
> module Main (main) where
and if I have a block, it should look something like this:
> main = do > args = getArgs > file = args!![0]
etc .. However, when I enter the gt sign, then the space and tab will only appear in two spaces!
I tried to solve this problem as follows:
set tabexpand set tabstop=4 set softtabstop=4 set noautoindent set shiftwidth=4
Any help would be greatly appreciated. I thought that the above would just make it insert 4 spaces, not any tabs.
source share