Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eagletmt committed Apr 25, 2013
1 parent e76265a commit b4d702a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# ChangeLog
## 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
- 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
- Show splicing end locations in `:GhcModExpand`
- Fix escaping in `:GhcModInfoPreview`
- Fix ignorance of `g:ghcmod_ghc_options`

## 0.4.0 (2013-03-13)
- Suppress empty line when `ghcmod#type()` fails
- Disable `:GhcModType` and `:GhcModTypeInsert` if the current buffer is modified
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 [0, 4, 0]
return [1, 0, 0]
endfunction "}}}

" vim: set ts=2 sw=2 et fdm=marker:
2 changes: 1 addition & 1 deletion dist.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
exec vim -e -N -u NONE --cmd 'set runtimepath=.,~/.vim/bundle/vimproc' -S dist.vim -c quit
exec vim -e -N -u NONE --cmd 'set runtimepath=.,~/.vim/bundle/vimproc' -S dist.vim -c quit < /dev/null

0 comments on commit b4d702a

Please sign in to comment.