Skip to content
This repository was archived by the owner on Feb 23, 2025. It is now read-only.

Commit

Permalink
Merge pull request #365 from liquidz/dev
Browse files Browse the repository at this point in the history
ver 3.6.2
  • Loading branch information
liquidz authored Sep 3, 2021
2 parents fb60a64 + bb179cf commit 3cd6c85
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This change

== Unreleased (dev)

== 3.6.2 (2021-09-04)
// {{{
=== Fixed
* Fixed a unexpected exceptions during clojure.test errors.
// }}}

== 3.6.1 (2021-08-29)
// {{{
=== Changed
Expand Down
3 changes: 2 additions & 1 deletion autoload/iced/nrepl/test/clojure_test.vim
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endfunction

function! s:extract_actual_values(test) abort
if !has_key(a:test, 'diffs') || type(a:test['diffs']) != v:t_list
return {'actual': trim(get(a:test, 'actual', ''))}
return {'actual': iced#util#delete_color_code(trim(get(a:test, 'actual', '')))}
endif

let diffs = a:test['diffs'][0]
Expand Down Expand Up @@ -63,6 +63,7 @@ function! s:collect_errors_and_passes(resp) abort
endif

let filename = get(test, 'file')
let filename = (type(filename) == v:t_string) ? filename : ''
if !filereadable(filename) && is_ns_path_op_supported
let ns_path_resp = iced#nrepl#op#cider#sync#ns_path(ns_name)

Expand Down
2 changes: 1 addition & 1 deletion doc/vim-iced.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*vim-iced.txt* Clojure interactive development environment for Vim8/Neovim

Version: 3.6.1
Version: 3.6.2
Author : Masashi Iizuka <[email protected]>
License: MIT LICENSE

Expand Down
2 changes: 1 addition & 1 deletion ftplugin/clojure.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ if exists('g:loaded_vim_iced')
finish
endif
let g:loaded_vim_iced = 1
let g:vim_iced_version = 30601
let g:vim_iced_version = 30602
let g:vim_iced_home = expand('<sfile>:p:h:h')
" NOTE: https://github.com/vim/vim/commit/162b71479bd4dcdb3a2ef9198a1444f6f99e6843
" Add functions for defining and placing signs.
Expand Down

0 comments on commit 3cd6c85

Please sign in to comment.