Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eagletmt committed Oct 15, 2013
1 parent 98c69ea commit b458d6c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# ChangeLog
## 1.1.0 (2013-10-16)
- Specify line separator by "-b" option (@preygel)
- This requires ghc-mod >= 2.1.2

## 1.0.0 (2013-04-25)
- Refactor many autoload functions
- ghcmod.vim is an interface to ghc-mod
- ghcmod/command.vim contains definitions of commands
- ghcmod/type.vim is an implementation of `:GhcModType`
- Now `w:ghcmod_type_matchid` is not needed and deleted
- ghcmod/util.vim is a collection of utilities
- ghcmod.vim is an interface to ghc-mod
- ghcmod/command.vim contains definitions of commands
- ghcmod/type.vim is an implementation of `:GhcModType`
- Now `w:ghcmod_type_matchid` is not needed and deleted
- ghcmod/util.vim is a collection of utilities
- Add test cases
- Speed up boot time by moving autoload functions used at loading ftplugins
- Add commands with `!` that is executed even if the current buffer is modified
Expand All @@ -16,8 +20,8 @@
## 0.4.0 (2013-03-13)
- Suppress empty line when `ghcmod#type()` fails
- Disable `:GhcModType` and `:GhcModTypeInsert` if the current buffer is modified
- Add new variant `:GhcModType!` and `:GhcModTypeInsert!` which is executed even if the current buffer is modified.
- Change `ghcmod#type()` and `ghcmod#type_insert()` to take an argument determining the behavior when the buffer is modified.
- Add new variant `:GhcModType!` and `:GhcModTypeInsert!` which is executed even if the current buffer is modified.
- Change `ghcmod#type()` and `ghcmod#type_insert()` to take an argument determining the behavior when the buffer is modified.
- Fix `ghcmod#detect_module()` to detect the module name more correctly
- Change the default directory to execute ghc-mod from (@drchaos)

Expand Down
2 changes: 1 addition & 1 deletion autoload/ghcmod.vim
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function! s:find_basedir() "{{{
endfunction "}}}

function! ghcmod#version() "{{{
return [1, 0, 0]
return [1, 1, 0]
endfunction "}}}

" vim: set ts=2 sw=2 et fdm=marker:

0 comments on commit b458d6c

Please sign in to comment.