martinit

Results 19 comments of martinit

For me, I'll take the first option. If a repo has stars more than 500 or 1k, I'll consider it as something that is worth a try. Small number of...

Auto-expanding traits would save much time in copying LONG methods

Thanks. I missed the highlight config. But can I ask what is the `

After some grep in the source code, I found `

@jakecorrenti Thank you! Hope that I can use it in my project.

I mean to grep the exact word under cursor, like the regex "\bsomeword\b". I work out with this: ``` vim.keymap.set('n', 'fw', function() require('telescope.builtin').grep_string { word_match = '-w' } end, {...

@thi-marques Thanks but your config cannot grep the exact word? Or should I add a pair of `\b`(I dont know what it should be in vim) around ``?

@thi-marques I tried: But it seems the grep result contains some word not match exactly: My neovim version is v0.10.4 and telescope.nvim is 0.1.8 .

@thi-marques Thanks!That will work.