Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

tris203

tris203 pushed 30 commits to master tris203/neovim
  • fix(terminal): restore cursor from 'guicursor' on TermLeave (#31620) Fixes: https://github.com/neovim/neovim/issues/... 3db3947
  • test(cursor_spec): global highlight definitions (#31613) 160cbd0
  • vim-patch:9.1.0945: ComplMatchIns highlight doesn't end after inserted text (#31628) Problem: ComplMatchIns highlig... 02bc40c
  • fix(messages): better formatting for :highlight with ext_messages #31627 Also avoid going down message callstack wit... 31d6885
  • docs(api): specify when decor provider on_buf is called #31634 a5a4149
  • feat(jobs): jobstart(…,{term=true}), deprecate termopen() #31343 Problem: `termopen` has long been a superficial wra... 8ef41f5
  • vim-patch:9.1.0948: Missing cmdline completion for :pbuffer (#31645) Problem: Missing cmdline completion for :pbuff... 889f9a0
  • vim-patch:c363ca1: runtime(netrw): change indent size from 1 to 2 (#31648) closes: vim/vim#16248 https://github.c... 39781be
  • fix(vim.system): invalid MAX_TIMEOUT for 32-bit systems #31638 The maximum signed value on 32-bit systems is 2 ^ 31 ... 4e130c1
  • fix(messages): no message kind for completion menu messages #31646 909b18d
  • fix(coverity): INTEGER_OVERFLOW #31657 CID 516419: Integer handling issues (INTEGER_OVERFLOW) /src/nvim/me... e1c2179
  • vim-patch:c673b80: runtime(netrw): more reformating vim/vim#16248 (#31662) closes: vim/vim#16266 https://github.c... 725d3e2
  • vim-patch:9.1.0950: filetype: fennelrc files are not recognized Problem: filetype: fennelrc files are not recognize... 0fea57b
  • vim-patch:70881ba: runtime(dockerfile): do not set commentstring in syntax script fixes: vim/vim#16268 https://gith... 5f8fac0
  • build: bump lua dev dependencies busted: 2.1.1 -> 2.2.0 https://github.com/lunarmodules/busted/releases/tag/v2.1.2 h... 382eb87
  • feat(lsp): return table from lsp/ files on runtimepath (#31663) Problem: LSP configs on the runtimepath must have th... 130b5fd
  • test: format C test files and fix clang-tidy warnings It's probably not worth adding the C test files to regular for... fd05c7f
  • vim-patch:9.1.0951: filetype: jshell files are not recognized Problem: filetype: jshell files are not recognized So... c7a4197
  • feat(ui): additional arguments for cmdline_show/hide events Problem: Unable to tell what highlight the prompt part ... 394f69a
  • fix(messages): typo and unwanted truncation in msg_outtrans_long #31669 - Typo/bug in msg_outtrans_long passing stri... d1e00a5
  • and 10 more ...

View on GitHub

tris203 created a comment on an issue on tris203/precognition.nvim
> Ah this was something I had planned since I use spider as well but @tris203 doesn't... I am very busy these days but will see if I can make that happen this week :) have a look at the v2 draft...

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim
  • fix(dts): enable other scopes and reorder option setting 73e873d

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim
  • test(dts): add brackets back 0fe724c

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim
  • test(horizontal_motions): restore hm tests 6d0b96e

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim
  • perf: cleanup buffer after position check Prevents buffer leak by properly deleting the temporary buffer after posit... fe9032c

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim
  • fix: improve matching pair detection accuracy aa38e49

View on GitHub

tris203 pushed 1 commit to v2 tris203/precognition.nvim

View on GitHub

tris203 opened a draft pull request on tris203/precognition.nvim
feat(tests): dts testing
tris203 created a branch on tris203/precognition.nvim

v2 - 💭👀precognition.nvim - Precognition uses virtual text and gutter signs to show available motions.

tris203 pushed 3 commits to dts tris203/precognition.nvim
  • feat(tests): dts testing 499d5e0
  • fix(horizontal_motions): fix matching pairs edge cases 72c3599
  • fix(horizontal_motions): edge cases around end words bcddb12

View on GitHub

tris203 pushed 3 commits to dts tris203/precognition.nvim
  • feat: use matchpairs for bracket matching * Dynamically load bracket pairs from vim.o.matchpairs instead of hardcodi... 321ad27
  • fix(horizontal_motions): edge case around end words 58b1f39
  • feat(tests): dts testing feat: add DTS workflow and update DTS tests - Add GitHub Actions workflow for DTS testing ... 6a924e9

View on GitHub

tris203 pushed 1 commit to dts tris203/precognition.nvim
  • feat(tests): final fixes and notes around stage 1 dts ae649d9

View on GitHub

tris203 pushed 1 commit to dts tris203/precognition.nvim
  • feat: use matchpairs for bracket matching * Dynamically load bracket pairs from vim.o.matchpairs instead of hardcodi... 735d172

View on GitHub

tris203 pushed 1 commit to dts tris203/precognition.nvim
  • test: increase test count to 1 million Increase the number of test iterations from 100k to 1M to improve test covera... 8422638

View on GitHub

tris203 opened a draft pull request on tris203/precognition.nvim
feat(tests): dts testing
- Add GitHub Actions workflow for DTS testing - Update Makefile to include DTS target - Modify DTS script to run multiple simulations - Fix cursor position calculation in DTS utility
tris203 created a branch on tris203/precognition.nvim

dts - 💭👀precognition.nvim - Precognition uses virtual text and gutter signs to show available motions.

tris203 pushed 78 commits to master tris203/neovim
  • test: add decor benchmarks 731f83e
  • perf: consider only active decorations when drawing lines 3abd7ed
  • docs: add comments for DecorRangeSlot struct c57397f
  • refactor: comments, variable names fccef5e
  • vim-patch:eda923e: runtime(netrw): do not detach when launching external programs in gvim On Debian 12 when detachin... d7b3add
  • vim-patch:92b3666: runtime(netrw): only check first arg of netrw_browsex_viewer for being executable fixes: vim/vim#... 3d318be
  • Merge pull request #31523 from zeertzjq/vim-eda923e vim-patch: netrw fixes 30726c7
  • docs: fix type of vim.validate value 3bb2d02
  • build: mark CMake variables advanced #31412 The variables are not marked as advanced, thus they appear in e.g. `ccma... 1b90f4a
  • docs(vvars): adjust lua types for vim.v variables #31510 - classes for v:event and v:completed_item - add remaining... 4889935
  • vim-patch:9.0.2112: [security]: overflow in shift_line Problem: [security]: overflow in shift_line Solution: allow ... 2336389
  • vim-patch:9.0.2113: Coverity warns for another overflow in shift_line() Problem: Coverity warns for another overflo... ac23037
  • vim-patch:9.0.2122: [security]: prevent overflow in indenting Problem: [security]: prevent overflow in indenting So... 7a7ed0c
  • vim-patch:9.0.2124: INT overflow detection logic can be simplified Problem: INT overflow logic can be simplified So... 6c81c16
  • vim-patch:9.1.0917: various vartabstop and shiftround bugs when shifting lines Problem: various vartabstop and shif... e4bb185
  • Merge pull request #31534 from zeertzjq/vim-9.0.2112 vim-patch: line shifting fixes 98694c3
  • fix(ui): update title in more cases (#31508) d1fd674
  • vim-patch:ad4764f: runtime(proto): include filetype plugin for protobuf closes: vim/vim#16199 https://github.com/vi... c389941
  • vim-patch:b66cac1: runtime(typst): add definition lists to formatlistpat, update maintainer closes: vim/vim#16192 h... 4182e98
  • Merge pull request #30869 from vanaigr/decor_long_lines_perf perf(decor): improve performance for long lines c87ca1e
  • and 58 more ...

View on GitHub

tris203 created a comment on a pull request on neovim/neovim
> Do we still need this? It is faster than the current implementation. I think Lewis found it was 15% faster, but then there is some discussion as to where we want the code to be But the fle...

View on GitHub

tris203 pushed 8 commits to backport-31483-to-release-0.10 tris203/neovim
  • fix(completion): avoid deleting text when completion leader changes #31448 Problem: When completion leader changes,... 6a63034
  • fix(inspect): always show priority Problem: It is not obvious if a treesitter highlight priority shown in `:Inspect`... 650dcbb
  • fix(events): don't expand `args.file` for Lua callback (#31473) Problem: In an autocommand Lua callback whether `ar... 71faa2b
  • Merge pull request #31532 from zeertzjq/backport fix(events): don't expand `args.file` for Lua callback (#31473) 8fbe3e3
  • fix(filetype): make filetype detection work with :doautocmd (#31470) (cherry picked from commit 1077843b9bee550fe2ae... 7abc583
  • fix(marks): skip right_gravity marks when deleting text Problem: Marks that are properly restored by the splice ass... 01fe4fc
  • fix(uri): uri_encode encodes brackets incorrectly for RFC2732 #31284 **Problem:** The brackets in the RFC2732 regula... 424a452
  • fix(lsp): cancel pending requests before refreshing Problem: Diagnostics and inlay hints can be expensive to calcula... d9ab8e9

View on GitHub

tris203 created a comment on a pull request on tris203/rzls.nvim
@daveHylde could you try this branch please?

View on GitHub

tris203 pushed 3 commits to open_docs tris203/rzls.nvim
  • fix(roslyn_handlers): closed documents dynamic files 5bc2dc6
  • fix(roslyn_handlers): cs files first 7f2c613
  • fix(definition): out of range definitions 0bce999

View on GitHub

tris203 pushed 1 commit to open_docs tris203/rzls.nvim
  • fix(definition): out of range definitions 83129bb

View on GitHub

tris203 pushed 1 commit to open_docs tris203/rzls.nvim
  • fix(roslyn_handlers): cs files first 81e1c9d

View on GitHub

tris203 created a comment on a pull request on seblj/roslyn.nvim
We might have some spawn timing issues But hopefully the server should spawn faster without having to generate the pipe separately first I will do some testing before and we can do synchronized ...

View on GitHub

tris203 pushed 1 commit to open_docs tris203/rzls.nvim
  • fix(roslyn_handlers): closed documents dynamic info 5f3ade1

View on GitHub

tris203 pushed 1 commit to open_docs tris203/rzls.nvim
  • fix(tests): emitter tests 6b92218

View on GitHub

Load more