Commit Graph

716 Commits

Author SHA1 Message Date
Dave Lage
8661d0d0cc Upgrade Usage to main section 2020-12-10 18:46:04 -05:00
Dave Lage
9568d01fcf Move buffer lists to vim section 2020-12-10 18:44:24 -05:00
Dave Lage
466ee510bf Add links to sections in intro. 2020-12-10 18:40:06 -05:00
Dave Lage
328743ff5d Fix treesitter table 2020-12-10 18:39:10 -05:00
Dave Lage
be077b959f Formatting 2020-12-10 18:38:17 -05:00
Dave Lage
b4b4c7652d Make smaller targetable lists for pickers 2020-12-10 18:37:17 -05:00
Dave Lage
3a416f552b Extend context in intro. 2020-12-10 18:18:07 -05:00
Dave Lage
82722104d7 Update pickers links 2020-12-10 17:20:53 -05:00
Dave Lage
76cafdd2e6 Use lowercase to be consistent 2020-12-10 17:17:06 -05:00
Dave Lage
137bf550fc Use local extensions section. 2020-12-10 17:16:11 -05:00
Dave Lage
93ebe0a47d Update link for pickers 2020-12-10 17:15:17 -05:00
Dave Lage
9aa11dd30a Lots of README changes (#324)
* Lots of README changes

* fix: Grammar

* Re-order pickers/extensions
2020-12-10 17:14:32 -05:00
Dave Lage
b3f41c8edd List all nvim-telescope extensions. 2020-12-10 14:39:12 -05:00
Eli Flanagan
06db1b6288 fix typo (#322) 2020-12-10 10:40:16 -05:00
Simon Hauser
df6b762b31 Feat: symbols json picker (#303) 2020-12-10 09:22:46 +01:00
Simon Hauser
a12d38bac3 Fix: filetype guesser (#321) 2020-12-10 09:15:44 +01:00
TJ DeVries
2dd02f74b3 fix: Don't require ts at mod level 2020-12-09 23:14:21 -05:00
Simon Hauser
7330e5d228 ci fix: don't cache git repos (#320) 2020-12-09 16:40:17 -05:00
TJ DeVries
8ae1f7f94b feat: make ci green 2020-12-09 15:56:27 -05:00
Simon Hauser
d67eb599fb ci: Pipeline Tests (#315) 2020-12-09 15:48:55 -05:00
Simon Hauser
141dc6d55e ci: Add luacheck ci job (#317)
* Add luacheck ci job

* Fix most of the linting issues

* fixup: lint

Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2020-12-09 15:46:41 -05:00
Simon Hauser
c276db06e2 Feat: Opt in vim buffers for previewers (#298)
Enable with:
require('telescope').setup {
  defaults = {
    file_previewer = previewers.vim_buffer_cat.new,
    grep_previewer = previewers.vim_buffer_vimgrep.new,
    qflist_previewer = previewers.vim_buffer_qflist.new,
  }
}
2020-12-09 16:58:22 +01:00
TJ DeVries
d1c15dc265 feat: Force delete buffers 2020-12-07 14:24:21 -05:00
TJ DeVries
655295ef64 feat: Create LICENSE (#312) 2020-12-03 14:29:04 -05:00
Julian Berman
863a0d42c9 fix: Set and unset report to what's needed when deleting buffers. (#282)
Fixes #105.
2020-12-03 14:23:19 -05:00
TJ DeVries
be8f5ec8dc scratch: show conni 2020-12-03 12:39:59 -05:00
Simon Hauser
2e5ee9d43e Fix file_ingore_patterns for tags and lsp (#309)
closes #299 

authored by: @Conni2461
2020-12-03 15:50:27 +03:00
Simon Hauser
486ab56776 Feat: Displayer now supports highlights for separator and elements (#304)
Separator Example: When creating the displayer
```lua
local displayer = entry_display.create {
  separator = " ",
  separator_hl = 'Visual', -- New
  items = {
    { width = opts.bufnr_width },
    { width = 4 },
    { remaining = true },
  },
}
```

Elements Example: When submitting data
```lua
local hl_group = x == y then 'Normal' or 'Visual'

return displayer {
  entry.bufnr,
  { entry.indicator, hl_group },
  display_bufname .. ":" .. entry.lnum,
}
```
2020-12-03 08:41:10 +01:00
Mike Hartington
424b98df15 fix: add back filetypedetect on edit (#283)
* add back filetypedetect on edit

* chore(): apply feedback
2020-12-03 00:37:07 -05:00
tamago324
f2b483edc5 Fix to pass opts to pickers (#301)
builtins were not passing `opts` correctly, but now do.
2020-12-02 23:54:09 -05:00
Raphael
2fd09b9293 add new gif to show telescope.nvim (#306) 2020-12-01 21:29:16 -05:00
Senghan Bright
5595c2b57b add autocommands finder to readme 2020-12-02 00:32:25 +01:00
Senghan Bright
8546fdf610 new builtin - autocommands (#302)
* feat: new builtin - Autocommands finder

* fix: remove decorators to avoid confusion.

* make preview split same hl-group as border

* use highlight instead of marker character for preview selection hl
2020-12-02 00:27:54 +01:00
Senghan Bright
b1d436ce92 update readme to include packer extension 2020-12-01 23:56:43 +01:00
TJ DeVries
8d97b2dbdd fix: abstract and remove param 2020-12-01 12:47:43 -05:00
tami5
f3caae5dda fix: builtin runner insert issue (#266)
closes #262 , adds new parameter to action.close. Users know can have more control over the mode after action.close is called.
2020-12-01 14:03:14 +03:00
tami5
07ce3c341a Update README.md 2020-11-29 03:15:43 +03:00
tami5
3c881196ca Update README.md: add new preview
by @glepnir
2020-11-29 03:14:31 +03:00
Simon Hauser
7dd79bf2ef Fix builtin.builtin for lsp and git modules (#300) 2020-11-28 22:11:46 +01:00
Simon Hauser
7514137e2a Remove less from default termopen_env (#295) 2020-11-28 13:33:19 +01:00
windwp
16f11b6c27 feat: add lsp range code actions (#297)
https://github.com/neovim/neovim/pull/12962

authored by: @windwp
2020-11-28 09:16:17 +03:00
Cedric M'Passi
6edbd1db5f feat: Make tab toggle between git add and git restore in builtin.git_status() (#289)
Very useful functionality to use git_status for. Now users can add a file or restore it by <tab>

authored by: @cempassi
2020-11-27 14:15:02 +03:00
Simon Hauser
4a8ea7763e Refactor builtin (#287) 2020-11-26 08:16:58 +01:00
Julian Berman
0f9fd84a97 fix: Use noremap when mapping. (#286)
Previously, if e.g. : was remapped, Telescope would be unclosable with
its mappings (<Esc>).

(Do the same for ensuring we :silent)
2020-11-24 15:29:46 -05:00
tami5
ec9b501993 fix: bug report template to suggest -nu instead of -Nu (#284)
@Julian
2020-11-24 20:05:33 +03:00
Julian Berman
b1ebb6ea86 Fix the bug report template to suggest -u
I *assume* this is what the intention here is? I.e. to say to use the test.vim as the config.

I don't think `-N` does anything either, but let me know if I'm wrong.
2020-11-24 12:00:49 -05:00
tami5
3c8bb1afcc Add gitter tag 2020-11-23 20:32:30 +03:00
TJ DeVries
75311f2c04 feat: highlighter only 2020-11-23 12:30:09 -05:00
tamago324
823f881998 Filter the completion of the command (#279) 2020-11-23 11:35:07 -05:00
Simon Hauser
863328a96d feat: Buffers rework (indicators and sorting) (#208) 2020-11-23 10:11:46 -05:00