summaryrefslogtreecommitdiff
path: root/lua
AgeCommit message (Collapse)Author
2021-01-11refactor file_maker signature and fix scrolling (#412)Simon Hauser
2021-01-11fix: previewer windows fix (#371)Simon Hauser
2021-01-11feat: quickfix (#293)TJ DeVries
* feat: quickfix (not implemented) * [WIP]: Wed 09 Dec 2020 11:11:30 PM EST * somewhat working linked list impl * getting closer * might be working * might be working for real * works and implemented basic example * dont forget to close prompt * fix descending and add more tests * test fixes * fix test * more logging * Fix some more tests * Fix logging messing up tests * fix: lint * fix: multi select stuffs
2021-01-09fix: use valid paths for term_previewer vimgrep and qflist (#402)JINNOUCHI Yasushi
2021-01-08fix: custom extensions opts for commands (#404)Raphael
2021-01-08refactor telescope command (#398)Raphael
* refactor telescope command * addd telescope default options support * fix variable name wrong * convert command line string to lua type * add comment. * update readme for use theme in commandline * enhance complete in commandline * enhance complete in commandline * enhance covert commandline options
2021-01-06fix: remove quotes from spell suggestions (#400)Senghan Bright
2021-01-06Spell suggestions (#399)Senghan Bright
* feat: spell suggest picker * set correct window title * add entry to readme
2021-01-06add devicons to oldfiles picker (#397)JINNOUCHI Yasushi
2021-01-05fix: handle directories in windows with dir (term_previewer) (#395)Mike
2021-01-05feat: add actions.get_current_line (#391)oberblastmeister
2021-01-04feat: Add highlight to builtin.git_status (#388)Cedric M'Passi
2021-01-04fix: live_grep will now accept cwd (#390)Simon Hauser
2021-01-04Fix missing global (#384)Senghan Bright
* add selected command to cmd-history * make N_ function global * fix vimoptions description resolution and add color
2021-01-04add selected command to cmd-history (#383)Senghan Bright
2021-01-03fix: termopen previewer for powershell (#382)Simon Hauser
2021-01-03fix: escape chars instead of resetting the prompt (#379)elianiva
2021-01-03fix: live_grep throws an error if you insert `\` (#378)elianiva
2021-01-01fix: make sure preview buffer is valid before writing to it (#376)Alvaro Muñoz
2020-12-31fix: tags now work with hasktags (#375)Simon Hauser
2020-12-31fix: has ts (#374)Simon Hauser
2020-12-30fix: add ts_parsers.ft_to_lang to detect lang (#373)fffed
Add detection of a proper buffer language by `ts_parsers.ft_to_lang` as `ts_parsers.has_parser` works with `language` but not with `filetype` https://github.com/nvim-treesitter/nvim-treesitter/issues/796
2020-12-30feat: append mode for previewers.utils.job_maker (#372)Alvaro Muñoz
2020-12-29feat: All buffer previewers are now async and more config options (#354)Simon Hauser
Configure preview window with: autocmd User TelescopePreviewerLoaded setlocal wrap autocmd User TelescopePreviewerLoaded setlocal number file_maker example: Use regex highlighting for certain filetype like `*min.js` because they slow down things with treesitter highlighter. Just a snippet for tests. We will do an extension :) local previewers = require('telescope.previewers') local putils = require('telescope.previewers.utils') local pfiletype = require('plenary.filetype') local _bad = { '.*%.min%.js' } local bad_files = function(filepath) for _, v in ipairs(_bad) do if filepath:match(v) then return true end end return false end local new_maker = function(filepath, bufnr, bufname, use_ft_detect, callback) if use_ft_detect == nil then use_ft_detect = true end if bad_files(filepath) then previewers.buffer_previewer_maker(filepath, bufnr, bufname, false, callback) local ft = pfiletype.detect(filepath) putils.regex_highlighter(bufnr, ft) else previewers.buffer_previewer_maker(filepath, bufnr, bufname, use_ft_detect, callback) end end require('telescope').setup { defaults = { buffer_previewer_maker = new_maker, } }
2020-12-27feat: all entry_makers are now overridable and icons for builtin.buffers (#364)tamago324
2020-12-26fix: bug scroller.create (#366)MenBrial
Corrects error creation
2020-12-26Feat: Add hidden to find_files (#340)Julian Berman
2020-12-23ci: more tests (#359)TJ DeVries
* more tests * lint
2020-12-23feat: include buf local maps, execute item on enter (#360)tami5
keymaps should now include local buffer mappings and execute the mappings one enter
2020-12-21fix: normal mode toggle issueCedric M'Passi
2020-12-21feat: Add better highlighting and new CI abilities (#355)TJ DeVries
* Revert "Revert "fix: Better highlights (#344)" (#350)" This reverts commit 7950fc8ba0accfcf6c540c7810feee646281fd8a. * better highlights take 2 * fixup * install fd find for sameness * add some debug output * more deterministic * better ci
2020-12-20LSP check capabilities (#356)Senghan Bright
* check server capabilities before using LSP finders * client indices do not always start at [1] * succeed on first supported client * use apply_checks method * removed debug comment * rename mappings table
2020-12-19Feat: displayer hl_chars and TelescopeResults hlgroups (#349)Simon Hauser
2020-12-19More colours (#351)Senghan Bright
* add vim hl_groups for autocmds finder * spacing * add displayer/colouring for git_commits * LSP colouring and restore filename for workspace symbols * resolve review issues. * fix: handle 'show_line', 'ignore_filename', 'hide_filename' * fix lsp workspace defaults * allow for setting show_line when ignore filename is true * move lsp_doc_symbol lineinfo to 2nd column * reformat treesitter display to match LSP * use utility functions for setting opts defaults * add fix-me note for unlikely configuration permutation * use hl_chars format for inline lineinfo
2020-12-19Refactor previewers (#345)Simon Hauser
2020-12-18Revert "fix: Better highlights (#344)" (#350)Senghan Bright
This reverts commit eca83f214ab6c64ca8df838a306d1a4570accd31.
2020-12-18fix: Better highlights (#344)TJ DeVries
* scratch: easy reproduce for buffers * fix: Many highlight fixes
2020-12-18fix results count padding (#348)Senghan Bright
2020-12-18Add more colour (#346)Senghan Bright
* add colour to buffers finder * new display function for LSP workspace/doc symbols * add more hl_groups and opts paramter * use make_display() for man_pages finder. * use make_display for registers finder and add color * don't use quickfix make_entry() for builtin finder * make_entry() for builtin finder * remove debug output * revert change to internal.builtin finder * fix_spacing
2020-12-17Fix builtin.builtin again and add TelescopePreviewMatch hlgroup (#342)Simon Hauser
2020-12-17Update autocmd, highlights and help_tags previewers (#332)Simon Hauser
Also make vim buffer line configurable
2020-12-17Fix: Use plenary.filetype.detect and remove own filetype detect (#326)Simon Hauser
requires newest plenary.nvim version or you will have a bad day
2020-12-17feat: add search_dirs opt to builtin.find_files to search from multiple dirs ↵Anirudh Haritas Murali
(#237)
2020-12-16fix: don't error when no hidden buffers are available (#341)Senghan Bright
2020-12-15fix: typo (#339)eth3lbert
2020-12-14fix: Checks for next server on bufferTJ DeVries
2020-12-13change quickfix make_entry to use column displayer (#331)Senghan Bright
* change quickfix make_entry to use column displayer * fix: don't convert filename to empty string
2020-12-13Fix: typo (#333)Christopher Laidler
2020-12-11Fix: scroller for descending (#327)Simon Hauser
2020-12-10refactor: Move scroller into own testable moduleTJ DeVries