Skip to content
#

nvim-plugin

Here are 128 public repositories matching this topic...

ggandor
ggandor commented Nov 4, 2021

The README in its current form mostly considers users coming from Sneak/EasyMotion/Hop, and focuses on the distinguishing features of Lightspeed, in a pretty verbose manner. For people who have never used such plugins, or are even new to Vim itself, the information is too distributed though, and I suspect it is hard to get a quick overview on what the heck is Lightspeed actually doing, and why the

documentation help wanted good first issue brainstorming
dylanbyars-komodo
dylanbyars-komodo commented Apr 19, 2022

It's easy to get lost in a big nested object literal.

What if we added a new query that records the current key of the object the user is focused inside of? It would be best if the query worked at any level of nesting so an object like

const foo = {
  bar: {
    baz: {
      bip: 'bop' // cursor on this line
    }
  }
}

would return {} foo > {} bar > {} baz > {} bip

I

enhancement good first issue
tkkcc
tkkcc commented Dec 8, 2021

Hi,

It seems this plugin doesn't support multibyte charactor, for example 图片。I tried modifying

function source:get_keyword_pattern()
  return [[\w\+]]
end

to [[\k\+]], but failed.

Currently, multibyte charactor is support in buffer source using

sources = cmp.config.sources({
  {name = 'snippy'}, {name = 'nvim_lsp'},
  {name = 'buffer', option = { keyword_pa
enhancement help wanted good first issue

Improve this page

Add a description, image, and links to the nvim-plugin topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the nvim-plugin topic, visit your repo's landing page and select "manage topics."

Learn more