Releases: caleb-allen/VimBindings.jl
Releases · caleb-allen/VimBindings.jl
v0.3.14
VimBindings v0.3.14
Merged pull requests:
- Remove clipboard warning (#102) (@caleb-allen)
Closed issues:
v0.3.13
VimBindings v0.3.13
Merged pull requests:
- Multi-byte character fixes for end-of-line operations (#97) (@caleb-allen)
- Include julia 1.10 in tests (#99) (@caleb-allen)
- Create devcontainer.json (#100) (@caleb-allen)
Closed issues:
v0.3.12
VimBindings v0.3.12
Merged pull requests:
- Remove Match.jl dependency (#90) (@caleb-allen)
Closed issues:
- Makie doesn't play with VimBindings (#89)
v0.3.11
VimBindings v0.3.11
v0.3.10
VimBindings v0.3.10
Closed issues:
- Odd behavior when using
e
on certain sequences of symbols containing|
. (#66) caW
is broken (sometimes?) (#80)- REPL hangs when trying to delete last line (#84)
Merged pull requests:
- CompatHelper: bump compat for Match to 2, (keep existing compat) (#83) (@github-actions[bot])
- Improve linewise operations (#85) (@caleb-allen)
- Correct method call for identifying a WORD (#86) (@caleb-allen)
v0.3.9
v0.3.8
VimBindings v0.3.8
Release notes:
- adds clipboard integration with
y
,p
, andP
, disabled by default. See documentation for details. - Fix bug where
w
got stuck on 1-character words.
Merged pull requests:
- Add PasteCommand and parse rule for
p
(#71) (@caleb-allen)
v0.3.7
VimBindings v0.3.7
Release Notes
This release fixes many issues, especially related to off-by-one errors. The code for line detection was refactored, fixing many line-related bugs.
Plus, a nice new documentation site! https://caleb-allen.github.io/VimBindings.jl/dev/
Closed issues:
C
command causesBoundsError
on 1-character buffers (#57)o
includes the final character of a line in the new line (#60)A
moves backwards when cursor is at end of line (#61)- division symbol ÷ causes error and REPL to crash (#75)
Merged pull requests:
- Implement
s
, fixA
at end of line, fixo
, fixC
on single-char (#77) (@caleb-allen) - Add documentation with Documenter (#78) (@caleb-allen)
Development related improvements in this release:
- Add
s
command - fix
o
command - improve UTF-8 handling
- Refactor other motion commands to use
junction
logic from TextUtils - Add
read_left
,read_right
,peek_left
,peek_right
to improve utf8 handling in buffer operations
v0.3.6
VimBindings v0.3.6
Closed issues:
- Cursor style should revert to default when REPL is closed (#51)
- REPL exit with
Error processing input
for unicode characters (#65) - return cursor to normal mode upon exiting (#72)
Merged pull requests:
- Add undo and redo keys to precompile parsing (#69) (@caleb-allen)
- Reset terminal cursor style after each prompt (#73) (@caleb-allen)
v0.3.5
VimBindings v0.3.5
Closed issues:
- Unicode display errors (#63)
Merged pull requests:
- Fix recording of unicode characters (#64) (@MilesCranmer)