vim-stylish-haskell icon indicating copy to clipboard operation
vim-stylish-haskell copied to clipboard

stylish-haskell vim plugin

Results 4 vim-stylish-haskell issues
Sort by recently updated
recently updated
newest added

Code taken from gofmt-vim https://github.com/fatih/vim-go/blob/99a1732e40e3f064300d544eebd4153dbc3c60c7/autoload/go/fmt.vim Closes #6

If I have the same file in two windows and I save in one window the other window loses its position. To reproduce - `vim Foo.hs` - `:split` - `:w`...

Very similar to #4 - `vim Foo.hs` - Make a change - `:w` (run stylish-haskell) - `u` (undo (works correctly)) - `C-r` (redo (works correctly but the cursor changes position))...

Using the following vimrc as `vim -u vimrc` ``` vim set nocompatible filetype on filetype off set rtp+=~/.vim/bundle/vundle/ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'dag/vim2hs' Bundle 'nbouscal/vim-stylish-haskell' filetype plugin indent on...