Commit graph

145 commits

Author SHA1 Message Date
Ilan Schemoul
cd2cf0c124
Docs: fix README.md by adding setup for cmp-git (#1914) 2024-05-08 18:33:32 +09:00
Micah Halter
66f0a031d9
feat: default to vim.snippet for snippet expansion if available (#1820) 2024-03-22 03:04:54 +09:00
Kyle Butt
6460f979b9
Add option for symbol matching logic. (#1515)
The no_symbol_match makes command line completion a lot less useful. It
disables any matches for file names with symbols in them. This prevents
completing things like ":b foo/bar" to ":b foo/bar.txt" or ":b foo_" to
":b baz/foo_bar.txt". Add an option `disallow_symbol_nonprefix_matching`
that prevents a match if it contains a symbol and isn't a prefix match.
Make that option the default. Add the option to documentation and tests.
Add to the examples for command line setup disabling the option.
2024-03-22 03:00:36 +09:00
Corentin Hervaud
fc0f694af1
Updating documentation as cmp_git source as been moved to git (#1603) 2023-05-30 16:25:55 +09:00
David Goldstein
799392ac8d
Fix demo video in README.md (#1585) 2023-05-25 22:44:18 +09:00
Sizhe Zhao
208d69f233
README.md: don't set 'completeopt' (#1442) 2023-02-16 00:02:19 +09:00
hrsh7th
1b2e843a69 Add cmp.mapping.preset.* change policy 2023-02-14 23:39:56 +09:00
Zhizhen He
a188be8559
Add a rule to install stylua and use the local one for other rules (#1307) 2022-11-16 14:22:24 +09:00
sigmaSd
0b6654d3de
Update README to use the new default_capabilities (#1243) 2022-10-16 17:11:40 +09:00
Amar Al-Zubaidi
83c097699d
setup.cmdline: support using a table (#1193) 2022-09-26 11:51:01 +09:00
yuys13
d2bc377b96
Update README.md to add missing do (#1188) 2022-09-25 23:57:01 +09:00
Amar Al-Zubaidi
17a55b3d54
README.md: use buffer source for / and ? (#1186) 2022-09-24 12:38:21 +09:00
Amar Al-Zubaidi
33fbb2c3d2
Fix grammar mistake: "setup" -> "set up" (#1155) 2022-09-02 11:29:33 +09:00
Jonas Strittmatter
15c7bf7c0d
Update documentation (#1019)
Co-authored-by: hrsh7th <629908+hrsh7th@users.noreply.github.com>
2022-06-09 16:41:59 +09:00
hrsh7th
5054c14490
dev (#956)
* Adjust empty line count

* Implement vim.api.nvim_create_autocmd (#844)

* Implement vim.api.nvim_create_autocmd

* Only use vim.api.nvim_create_autocmd on nighly

* Cleanup

* cleanup

* Rename autos.lua to autocmds.lua

* Fix forgot to rename autos to autocmds

* Remove legacy autocmd

* Add descriptions on autocmds

* Update descriptions on autocmds

* Update CmpStatus command to lua API (#922)

Signed-off-by: Micah Halter <micah@balena.io>

* Move highlights to nvim_set_hl lua API (#925)

Signed-off-by: Micah Halter <micah@balena.io>

* Add default to highlight

* Refactor autocmds

* fmt

* Improve performance

* Fix bug

* Improve matching logic
Fixes https://github.com/hrsh7th/nvim-cmp/discussions/954

* Fix format

* Improve performance
Fix #825

* Fix cmdline redraw bug

* Fix event

Co-authored-by: hrsh7th <>
Co-authored-by: zer09 <zer09@users.noreply.github.com>
Co-authored-by: Micah Halter <micah@mehalter.com>
2022-05-04 01:47:01 +09:00
manusandoval05
bba6fb67fd
Fixed typo (#928) 2022-05-03 01:48:32 +09:00
hrsh7th
2aa7eee28b Improve README.md 2022-04-18 23:50:46 +09:00
Stéphane Bisinger
b5433f901e
docs!: improve the instructions to follow breaking changes (#231) (#904)
Improve the README instruction on where to find breaking changes.
Included a suggestion to subscribe to the
[github issue](https://github.com/hrsh7th/nvim-cmp/issues/231) to
get notified about changes.
2022-04-14 20:42:08 +09:00
hrsh7th
93cf84f7de Remove all default mappings 2022-04-14 00:10:33 +09:00
hrsh7th
fae808a2bc
dev (#813)
* feat: completion menu borders (#472)

* feat(custom_entries_view): pass custom border option

* feat(window): calculate offset needed for borders

* fix(window): adjust window height w/ too many results

* fix(window): center scrollbar with borders

* ref(custom_entries_view): use `FloatBorder` for borders

* fix(window): offset at bottom of window

* ref(window): move height adjustment to more logical place

* fix(window): improve popup placement

* fix(window): `border_offset` always `0` first time

* feat(window): support compact scrollbar with border

* fix(window): completion popup on cursorline

* perf(window): simplify offset calculation

String indexing will result in the same thing as if I gated it behind
`type()` calls here.

* docs(window): add `border` to `cmp.WindowStyle`

* docs(window): correct `border_offset_scrollbar`

* perf(window): calulated row -> `screenrow`

This will also be more accurate since it accounts for wrapped lines, as
well as buffers.

* fix(window): edge case with multiple splits

* ref(winhighlight): don't specify defaults by default

`NormalFloat:NormalFloat` isn't needed, since `NormalFloat` defaults to
`NormalFloat`. As for `FloatBorder`, that should be set to `Floatborder`
rather than `NormalFloat` or else you get unintended artifacts on the
edges of borders.

* fix(window): popup covers cursor when scrollbar disappears

* ref(window): calc `border_offset_col` on `set_style`

* perf(window): remove unecessary `col` calculation

Taking it out didn't change anything about the popup behavior.

* feat: add `CmpItemMenuThumb` group

* feat(window): improve scrollbar appearance

* chore(window): remove references to unused property

* docs: document new option `thin_scrollbar`

* ref(plugin): remove background from `thin_scrollbar`

* feat(view): pass `thin_scrollbar` option to window

* feat(window): gate new `thin_scrollbar` behind option

* fix(window): cmdline bugging out

* fix(cmp): docs_view pops up overlapped when using borders

This is related to 1cfe2f7dfd. The
calculation for how the popup position is calculated was changed, and
so it needed to be reworked to include borders in order to be able to
work.

* ref: `thin_scrollbar` flag -> `scrollbar` option

This change allows users to define which character they will use for
their scrollbar.

* fix(window): use `scrollbar` setting for scrollbar character

Thanks @Astrantia for pointing this one out.

* docs(README): add completion appearance options to FAQ

* fix(): account for `border_offset_row` with `has_bottom_space`

* style(custom_entries_view): group offset with `row`/`col`

* fix(window): scrollbar at full view height

Because the `bar_height` variable must be whole number, and must be rounded up
from a percent, there is a change that we will end up with the maximum
height as a number.

For example, `info.height` = 24 and `total` = 25.

* feat(window): allow scrollbar to be disabled

* fix(window): scrollbar size < 1

* ref(cmp): move border logic to `window.info`

* ref!: window highlighting based on borders

BREAKING CHANGE: `documentation.winhighlight` does not determine the
                 highlighting of the `documentation` view— `CmpWindow`
		 or `CmpBorderedWindow` depending on whether it has a
		 border.

* ref!: float appearance opts -> `cmp.setup.window`

`cmp.setup.completion.border` and `.scrollbar` were both moved to
`cmp.setup.window.completion.border` and `.scrollbar`

BREAKING CHANGE: `cmp.setup.documentation` has been moved to
                 `cmp.window.documentation`, as all of the pertaining
		 options were cosmetic.

TODO: document the change

* fix(window): attempt to get scrollbar's border

* fix(cmp): restore `view.menu.hl_group`

* fix(window): wrong scrollbar position

* ref: get default `CmpItemMenu` from border existence

* chore(cmp): remove old PR comments

* fix(window): scrollbar sometimes too big

* fix(window): docs far away with complete menu scrollbar

* perf(docs_view): reuse `border_width` value

* rev(cmp): restore `CmpItemMenu`

* ref(cmp): distinguish between `ScrollBar` and `ScrollThumb`

* fix(plugin): consistently refer to `Thumb` as `Thumb`

* rev(window): `Pmenu`-style scrollbar when no border

* fix(window): docs_view size wrong when first shown

* fix(window): docs_view scrollbar not responding to size

* fix(window): scrollbar sometimes to small, take 2

* fix(window): scrollbar bg not hiding

* ref(docs_view): put docs closer to completion menu

* fix(window): scrollbar position wrong with right border

* ref(config): add default border to documentation

* fix(window): scrollbar too close without border

* ref(plugin): link `CmpWindow` to `Pmenu`

I set `CmpWindow` to `NormalFloat`, because that is what you would
expect a floating window to use for a highlight group. However at
request I changed it to `Pmenu`.

* ref(plugin): link `CmpWindowBorder` to `CmpWindow`

* fix(window): scrollbar following thumb while scrolling

* ref: add more highlight groups

There just weren't enough highlight groups to satisfy the demands of the
project. If you change `CmpWindow` to `Pmenu`, then the `docs_view`
becomes `Pmenu` as well when on `main` it is `NormalFloat`.

* fix(window): scrollbar overlapping `docs_view` by default

* ref: remove `Bordered` highlight variants

* ref(utils): extract whitespace check to func

* feat: `window.completion.zindex` setting

* ref: `maxwidth|height` -> `max_`

* ref: simplify highlight groups

* feat: `window.*.winhighlight` setting

* ref(utils): `is_whitespace_char` -> `is_visible`

As hrsh7th noted, `''` is not a whitespace character. Yet, it is
necessary to group `''` and `' '` together for certain border behaviors
that are based on visibility. Thus I have renamed the function

* feat: specify `window.*.winhighlight` for un/bordered

* fix(custom_entries_view): set `winhighlight` on `open`

* ref: remove `Cmp*Scroll*` variants

There's no way for `window` to know which kind of window it is drawing a
scrollbar on. Simpler to just have one kind of scrollbar

* feat: distinguish between bordered and unbordered

* ref(cmp): `is_visible` -> `is_invisible`

That's what the function was checking for.

* fix(default): mislabeling of `default` and `bordered`

* chore: rebase fixup

* Change default highlight

* Add misc.rep

* Fix left-side docs_view with scrollbar

* Fix scrollbar

* Fix sbar/thumb win
Improve highlights

* Remove scrollbar cutomization for now

* Remove scrollbar option

* Simplify implementation

* Fix doc width

* Fix outdated docs

* Add comments

* Fix configuration schema

* fmt

* Fix for lint

Co-authored-by: Iron-E <36409591+Iron-E@users.noreply.github.com>
Co-authored-by: hrsh7th <>
2022-04-13 23:51:55 +09:00
Jonas Strittmatter
272cbdca3e
Update readme: add a link to a list of cmp sources (#853) 2022-03-22 12:05:54 +09:00
hrsh7th
26a9184c88 Add filetype config
Use view.entries == 'native' instead of experimental.native_menu
2022-02-11 15:20:24 +09:00
hrsh7th
b11f8bbee3 Improve README.md 2021-12-19 00:43:16 +09:00
Kai Howelmeyer
af07ff9b79
docs: clarify behavior of select in confirm mapping (#621)
Relates to #557
2021-12-07 18:01:36 +09:00
Jonas Strittmatter
fab968f735
Readme: improve readability of lua code block in setup section (#622) 2021-12-07 18:01:08 +09:00
hrsh7th
593a6345de
Implement kind highlights (#584)
* Implement kind highlights

* Fix link
2021-11-27 19:20:44 +09:00
hrsh7th
bf3b2d45b1 Fix README.md 2021-11-27 16:45:06 +09:00
hrsh7th
1944b46336
Allow to take the full SourceConfig from source API (#561)
* - SourceConfig.opts -> SourceConfig.option
- Add SourceConfig.trigger_characters
- Allow accessing full SourceConfig from source

* fmt&lint
2021-11-23 21:17:03 +09:00
RaZ0rr-Two
f2e7685c21
Add some wiki info in README (#549) 2021-11-18 17:35:45 +09:00
Hexin
27d4c21e8f
Fix document about scrolling docs backwards (#538) 2021-11-18 01:47:52 +09:00
Lukas Reineke
17d57f96cc
Add reason to complete function (#529)
fix #528
2021-11-17 01:17:58 +09:00
feathecutie
f0f0065f85
Fixed typo in README.md (#515) 2021-11-13 17:09:20 +09:00
G.A. Jazali
af06bd4b44
Link to menu appearance page in wiki (#493)
* Updated info in README.md

Added instruction for icons and source without extra plugin.

* Replace snippet with link to wiki
2021-11-11 19:33:25 +09:00
chmnchiang
3b4d3ceab1
Fix and improve README.md (#462)
Fix some typos and errors in `README.md`.
2021-11-02 17:43:46 +09:00
hrsh7th
bf0dd907d6 Fix #458 2021-11-02 12:24:11 +09:00
Bradley Mackey
437074a303
README: clarify that a snippet plugin is required (#439)
* README: clarify that a snippet plugin is required

* README: add to FAQ about snippet

* README: use snippet 'engine' nomenclature

* README: fix typo
2021-10-30 18:42:37 +09:00
hrsh7th
3945dc5d00 Add basic recently_used comparator 2021-10-29 18:46:51 +09:00
hrsh7th
1c498a5497
Add cmp.event:on() (#418) 2021-10-28 11:02:19 +09:00
hrsh7th
455817bb26
Update README.md 2021-10-27 13:34:49 +09:00
hrsh7th
cae2e8f48b
RFC: cmdline completion (#362)
* manual support dot-repeat

* cmdwin and terminal

* cmdline only

* Fix

* fix

* Improve

* Fix test

* Support macro

* disable cmdline for now

* Simplify

* fmt

* consume once

* Ignore = type

* cmdline

* fmt

* Improve

* update

* fmt

* Support incsearch

* fix

* Add api

* Avoid cmdline completion if the native_menu enabled

* fix for macro

* Improve

* fmt

* Insert-mode only by default

* Update

* avoid conflict

* Improve default mapping

* Fix

* fix

* similar to native

* Update

* Fix README.md

* Improve

* Use <afile>
2021-10-27 12:38:46 +09:00
hrsh7th
f1da3adddc Add cmp.config.disable for opt-out default setting 2021-10-25 22:50:38 +09:00
hrsh7th
b185e303bd Improve group handling 2021-10-23 00:38:55 +09:00
hrsh7th
533f17c569 group -> group_index 2021-10-22 19:52:48 +09:00
hrsh7th
8a10870cbe
Update README.md 2021-10-22 18:38:51 +09:00
SebastienWae
d26148f417
clarify setup.buffer (#392)
Clarify the fact that setup.buffer overwrite the global sources.

related to hrsh7th/nvim-cmp/issues#390
2021-10-22 18:30:09 +09:00
hrsh7th
452ce16246 Add cmp.selected_entry/cmp.get_active_entry 2021-10-22 18:25:24 +09:00
hrsh7th
e4a2cec153 Implement source group.
Fixes #391
2021-10-22 18:24:03 +09:00
hrsh7th
26e73f3140 Fix #372 2021-10-19 14:55:14 +09:00
hrsh7th
49acc84853 Add item fields order
Fixes #337
2021-10-12 20:50:05 +09:00
Xuyuan Pang
2a8dc6208a
Added option to set zindex of documentation window (#335) 2021-10-12 13:33:46 +09:00