projectile.nvim icon indicating copy to clipboard operation
projectile.nvim copied to clipboard

How add project to project.json?

Open xerron opened this issue 6 years ago • 2 comments

Need more documentation.

I am try:

:Denite projectile:add

xerron avatar Feb 20 '18 04:02 xerron

Yes, please show more documentation. I tried digging into Denite's own documentation but that's obscure as well.

amireldor avatar Feb 21 '18 14:02 amireldor

Currently you've got to hit tab in Denite's normal mode

add-project

But I've been using this mapping:

 call denite#custom#map(
       \ 'normal',
       \ 'a',
       \ '<denite:do_action:add>',
       \ 'noremap'
       \)

then using a to prompt for the addition.

But I'll see if I can figure out how to enable adding it as an argument.

dunstontc avatar Feb 25 '18 03:02 dunstontc