Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.1.x #2332

Closed
wants to merge 77 commits into from
Closed

0.1.x #2332

wants to merge 77 commits into from

Conversation

HUAHUAI23
Copy link

Telescope current_buffer_fuzzy_find change cursor position but it doesn't seem to add current cursor position to jumplist, so i add vim.cmd [[ normal! m' ]] to lua/telescope/builtin/__files.lua cols 412 https://neovim.discourse.group/t/how-to-add-the-current-cursor-position-to-the-jump-list/1585

no add vim.cmd [[ normal! m' ]]
https://user-images.githubusercontent.com/43649186/213096883-f72d0ef9-0715-4560-9e9b-97710a9062fe.mp4

after add vim.cmd [[ normal! m' ]]
https://user-images.githubusercontent.com/43649186/213097016-1025d74b-c27d-41ed-8bd0-08b1258555cd.mp4

Conni2461 and others added 30 commits July 16, 2022 09:56
This commit fixes a bug that lead to an error because we tried to
concatenate a table (`err`) to a string. Now we concatenate
`err.message` (a string) to the string.
We did not check `val ~= nil` in the resolve functions, so config like
`{ nil, max = 30 }` will throw a nil error. Also, if the config is `{
padding = _ }`, the logic relies on the function handling the padding is
iterated before the one handling min/max in the map, which is not always
guaranteed.

Fix the bug by adding nil check in the function handling min/max. Close
after refactor to some new asynchronous items for finders,
the tests stopped actually doing anything.

now they do things again.
path needs to be expanded for filereadable and isdirectory
* Starting to make some progress on extmarks for prefixes

* Finished up extmarks for multi-icons

* Cleaned up update_prefix calls, added display highlights

* remove highlight_one_row

* Remove TODOs

* stylua fixes

* fixes for luacheck

* Fixed whitespace to appease the stylua gods

* fixed a couple nits from pr

* Got tests passing with new highlighting functionality

* Apply suggestions from code review

Co-authored-by: Fabian David Schmidt <[email protected]>

Co-authored-by: Fabian David Schmidt <[email protected]>
Due to regression from switching 
to lua autocmd api pickers
 were resized only once.
…cope#2150)

neovim/neovim#19931 removed `_get_hl_from_capture(id)` since captures are now implicitly mapped to highlight groups with the same name.
Conni2461 and others added 21 commits December 2, 2022 10:21
…nvim-telescope#2275)

* fix(builtin.live_grep): add spacer ":" even when coordinates disabled

* fix docgen

Co-authored-by: Simon Hauser <[email protected]>
telescope.nvim is a common dependency across Neovim plugins.
Using luarocks may alleviate the need for users to specify their
plugins' dependencies in their plugin manager.
(e.g., vim-plug or packer).

See also:
https://teto.github.io/posts/2021-09-17-neovim-plugin-luarocks.html
@Conni2461
Copy link
Member

can you please open a PR against master, dev is done against master and fixes are backported to 0.1.x (by cherry-picking commits)

Also this shouldn't be done every time current_buffer_fuzzy_find is opened but rather its already done in the select action we only have to enable it. So all that needs to be done is to do push_cursor_on_edit = true, in the picker configuration

@HUAHUAI23
Copy link
Author

ok,thanks

Conni2461 added a commit to Conni2461/telescope.nvim that referenced this pull request Feb 19, 2023
Conni2461 added a commit that referenced this pull request Feb 19, 2023
@Conni2461
Copy link
Member

i resolved that myself because this pr includes like 77 unrelated already merged commits and it was to much hustle for me to figure out what went wrong with git here.

None the less, thanks :) bug is fixed on master and will be backported to 0.1.x later today

@HUAHUAI23
Copy link
Author

HUAHUAI23 commented Feb 19, 2023

thanks,ha ha ,i just change little lines,and don't konw why so much diff 😅

Conni2461 added a commit that referenced this pull request Feb 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.