Skip to content

Commit b4d702a

Browse files
committed
Version 1.0.0
1 parent e76265a commit b4d702a

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

ChangeLog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# ChangeLog
2+
## 1.0.0 (2013-04-25)
3+
- Refactor many autoload functions
4+
- ghcmod.vim is an interface to ghc-mod
5+
- ghcmod/command.vim contains definitions of commands
6+
- ghcmod/type.vim is an implementation of `:GhcModType`
7+
- Now `w:ghcmod_type_matchid` is not needed and deleted
8+
- ghcmod/util.vim is a collection of utilities
9+
- Add test cases
10+
- Speed up boot time by moving autoload functions used at loading ftplugins
11+
- Add commands with `!` that is executed even if the current buffer is modified
12+
- Show splicing end locations in `:GhcModExpand`
13+
- Fix escaping in `:GhcModInfoPreview`
14+
- Fix ignorance of `g:ghcmod_ghc_options`
15+
216
## 0.4.0 (2013-03-13)
317
- Suppress empty line when `ghcmod#type()` fails
418
- Disable `:GhcModType` and `:GhcModTypeInsert` if the current buffer is modified

autoload/ghcmod.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function! s:find_basedir() "{{{
296296
endfunction "}}}
297297

298298
function! ghcmod#version() "{{{
299-
return [0, 4, 0]
299+
return [1, 0, 0]
300300
endfunction "}}}
301301

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

dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
exec vim -e -N -u NONE --cmd 'set runtimepath=.,~/.vim/bundle/vimproc' -S dist.vim -c quit
2+
exec vim -e -N -u NONE --cmd 'set runtimepath=.,~/.vim/bundle/vimproc' -S dist.vim -c quit < /dev/null

0 commit comments

Comments
 (0)