diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 47a73707..bf919043 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. This change == Unreleased (dev) +== 3.8.7 (2022-04-16) +// {{{ +=== Changed +* Updated to handle `*.cljd` file as Clojure file. +* Bumped zprint to 1.2.3. +// }}} + == 3.8.6 (2022-04-12) // {{{ === Changed diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index d327dc7e..64a4975f 100644 --- a/doc/vim-iced.txt +++ b/doc/vim-iced.txt @@ -1,6 +1,6 @@ *vim-iced.txt* Clojure interactive development environment for Vim8/Neovim -Version: 3.8.6 +Version: 3.8.7 Author : Masashi Iizuka License: MIT LICENSE diff --git a/ftdetect/cljd.vim b/ftdetect/cljd.vim new file mode 100644 index 00000000..1de47b53 --- /dev/null +++ b/ftdetect/cljd.vim @@ -0,0 +1,3 @@ +augroup filetypedetect + au BufNewFile,BufRead *.cljd setf clojure +augroup END diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index d0997fef..4752b53a 100644 --- a/ftplugin/clojure.vim +++ b/ftplugin/clojure.vim @@ -2,7 +2,7 @@ if exists('g:loaded_vim_iced') finish endif let g:loaded_vim_iced = 1 -let g:vim_iced_version = 30806 +let g:vim_iced_version = 30807 let g:vim_iced_home = expand(':p:h:h') " NOTE: https://github.com/vim/vim/commit/162b71479bd4dcdb3a2ef9198a1444f6f99e6843 " Add functions for defining and placing signs. diff --git a/installer/zprint-clj.sh b/installer/zprint-clj.sh index d31efdfa..055e17ed 100755 --- a/installer/zprint-clj.sh +++ b/installer/zprint-clj.sh @@ -2,7 +2,7 @@ set -e -version='1.2.2' +version='1.2.3' # NOTE: macOS has a same named command, so add '-clj' postfix file='zprint-clj' if [ "$(uname)" == 'Darwin' ]; then