summaryrefslogtreecommitdiff
path: root/lua
AgeCommit message (Collapse)Author
2022-06-30docs: document limitations of file_ignore_patterns and transform_path (#1955)Simon Hauser
2022-06-30chore: cleanup vim options (#1946)Simon Hauser
2022-06-30break(git_files): change show_untracked default to false (#842)Ben Smith
2022-06-30fix: grep_string crashes when string has newline (#2026)Reed Koser
Fixes the crash below by sanitizing the title to not include the linebreak (replacing it by a "\n" string) stack traceback: [C]: in function 'nvim_buf_set_lines' .../nvim/plugged/plenary.nvim/lua/plenary/window/border.lua:222: in function '__align_calc_config' .../nvim/plugged/plenary.nvim/lua/plenary/window/border.lua:266: in function 'new' ...are/nvim/plugged/plenary.nvim/lua/plenary/popup/init.lua:384: in function 'create' ...re/nvim/plugged/telescope.nvim/lua/telescope/pickers.lua:326: in function '_create_window' ...re/nvim/plugged/telescope.nvim/lua/telescope/pickers.lua:399: in function 'find' ...m/plugged/telescope.nvim/lua/telescope/builtin/files.lua:151: in function 'v' ...m/plugged/telescope.nvim/lua/telescope/builtin/files.lua:475: in function 'v' ...im/plugged/telescope.nvim/lua/telescope/builtin/init.lua:487: in function 'grep_string' Fixes #2023
2022-06-18fix: error caused by the invalid options in create_autocmd for vimdiff (#2013)Rocky Zhang
2022-06-15fix: block autocommands when setting preview buffer (#2010)zeertzjq
Telescope creates most floating windows with `noautocmd = true`, so these windows do not trigger autocommands, but preview buffer is set in window using `nvim_win_set_buf()`, which triggers buffer autocommands. This may be unwanted, so block them using 'eventignore'.
2022-06-13fix: TelescopePreviewerLoaded (#2005)Simon Hauser
2022-06-12doc: use correct option name for 'only_sort_text' (#1995)Jose Veiga
2022-06-02fix: health for neovim nightly (#1984)Simon Hauser
The `health` module was moved to `vim.health` in neovim/neovim#18720
2022-06-02fix: pass user opts to planets picker (#1983)Anton
2022-06-02fix: error in action.close when picker.original_win_id is not valid (#1982)Jędrzej Boczar
2022-06-01fix: cursor move in actions.insert_symbol_i (#1979)Fabian David Schmidt
2022-05-29fix(builtin.commands): action error caused by remapping : (#1972)iwataka
2022-05-25fix(git_branch): fix typo in action notification (#1966)Fabian David Schmidt
2022-05-20fix: wrong win on selection (#1951)fdschmidt93
2022-05-20fix: exiting picker from insert mode (#1202)fdschmidt93
2022-05-18docs: reflect behavior of diagnostics bufnr nil (#1879)matt rice
2022-05-18fix: set tagstack when we jump with lsp in telescope (#1887)dagle
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-05-15hotfix: regression from latest commit, files could no longer be openedSimon Hauser
2022-05-15feat: Add ability to choose window to edit (#745)TJ DeVries
2022-05-15fix: get mark list from opts.bufnr instead of using :marks (#1935)pjmtdw
Should fix marks when going through builtin.builtin
2022-05-15fix: correctly use nvim-web-devicons (#1937)xeluxee
Also performance improvements for utils.path_tail
2022-05-12feat(entry_display): expose prompt_bufnr opt (#1934)fdschmidt93
Required for `vim.ui.input` with file_browser extension when prompt_bufnr may be left intermittently
2022-05-09feat(docs): simplified architecture flow chart (#1925)fdschmidt93
`:h telescope.nvim` now shows an overview of the telescope architecture
2022-05-09feat(builtin.keymaps): show lua fn name if available (#1929)fdschmidt93
2022-05-05fix: another teardown issue (#1918)Simon Hauser
2022-05-04fix(builtin.tags): custom filename width (#1842)Michael Maves
2022-05-04feat(live_grep): add glob and type filter shorthand opts (#1695)kylo252
2022-05-04feat: quickfixhistory picker (#1878)fdschmidt93
2022-05-04fix: initial mode setting issues (#1917)fdschmidt93
2022-05-03Revert "fix(pickers): misc initial_mode setting fixes (#1895)" (#1914)fdschmidt93
Reverts circumventing A for initial_mode insert as many more users have issues with the current (failed attempt at a) fix
2022-05-03fix(pickers): misc initial_mode setting fixes (#1895)fdschmidt93
2022-05-02fix: termpreviewer scrolling (#1906)Simon Hauser
2022-05-01fix: termopen previewer (#1901)Simon Hauser
- buffer leaking - still insert mode on confirm
2022-05-01fix(treesitter): use upstream get_node_text() instead of nvim-treesitter's ↵Chinmay Dalal
deprecated one (#1905)
2022-04-30chore: adapt to resolved_capabilities deprecation (#1902)Christian Clason
Neovim deprecated `resolved_capabilities` in https://github.com/neovim/neovim/pull/17814 Replace with `server_capabilities` and adapted feature table, which is backwards compatible with 0.7.
2022-04-30docs: add 'https://' prefix to smart history link (#1885)Austin Ray
2022-04-30fix: close process handle after termination (#1856)Quet Zal
2022-04-30feat: support for builtin.commands to show buffer commands (#1889)milanglacier
2022-04-30docs(smart_path): add negative performance warning (#1899)Simon Hauser
2022-04-30fix: man_pages respect nosplitright for <c-v>Simon Hauser
followup to bf16fe620fa8290eb4c575caec0101b6e1dc5dcd
2022-04-30fix: help_tags respect nosplitright for <c-v>Simon Hauser
fix #1897
2022-04-28fix(actions): don't exec pre or post if replaced (#1892)fdschmidt93
2022-04-27fix(finder): don't trigger twice w/ inital_mode="insert" (#1886)fdschmidt93
2022-04-26fix: prompt now has always buftype promptSimon Hauser
fix #1882
2022-04-25break: remove lsp code actions (#1866)Simon Hauser
see :help telescope.changelog-1866 for more information
2022-04-25feat: switch to telescope.lua (#1873)Simon Hauser
Co-authored-by: Christian Clason <christian.clason@uni-due.de>
2022-04-25fix(help_tags): exclude invalid help-tag that errorsSimon Hauser
fix #1858
2022-04-22fix(which_key): get full path & handle table assignment of funcrefs (#1875)fdschmidt93
2022-04-22chore: use of require "health" over vim.fn["health#*"] (#1868)Simon Hauser