From b4d702a225cb5be52cf89b087322a4a9abdc26a5 Mon Sep 17 00:00:00 2001 From: eagletmt Date: Thu, 25 Apr 2013 12:00:08 +0900 Subject: [PATCH] Version 1.0.0 --- ChangeLog.md | 14 ++++++++++++++ autoload/ghcmod.vim | 2 +- dist.sh | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 62007d3..873ea84 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 diff --git a/autoload/ghcmod.vim b/autoload/ghcmod.vim index 734cf54..dcb3b31 100644 --- a/autoload/ghcmod.vim +++ b/autoload/ghcmod.vim @@ -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: diff --git a/dist.sh b/dist.sh index 101180b..5a7bba6 100755 --- a/dist.sh +++ b/dist.sh @@ -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