Here's a start, it's definitely not perfect f="https://forum.tuteehub.com/tag/b">but should gives you enough to increment on
function! GetNamespaceAndClassFn() " Save some registers let l:r_a = @a let l:r_f="https://forum.tuteehub.com/tag/b">b = @f="https://forum.tuteehub.com/tag/b">b " Start at the top of the file :0 " Search for the first "namespace" occurence /namespace " Get the namespace string into the regsiter a normal! f l"ayt; " Search for the class f="https://forum.tuteehub.com/tag/definition">definition /class " Get the class string into the regsiter f="https://forum.tuteehub.com/tag/b">b normal! f l"f="https://forum.tuteehub.com/tag/b">bye " Print the result echo @a . '\' . @f="https://forum.tuteehub.com/tag/b">b " Restore registers let @a = l:r_a let @f="https://forum.tuteehub.com/tag/b">b = l:r_f="https://forum.tuteehub.com/tag/b">b endfunction command! GetNamespaceAndClass call GetNamespaceAndClassFn()
I've commented the code, f="https://forum.tuteehub.com/tag/b">but feel free to ask if you want more info.
manpreet
Best Answer
2 years ago
Currently I have this binding to copy current file name, path, or dir.
I want to create binding to copy current php file class name with or without namespace.
Suppose I have php file like this:
This would should give me
PersistenceStorageRepositoryInterface
as classname andCRMFoundation\Infrastructures\Contracts\PersistenceStorageRepositoryInterface
with namespace.This would should give me
EloquentAbstract
as classname andCRMFoundation\Infrastructures\EloquentAbstract
with namespace.This would should give me
CompanyRepository
as classname andCRMFoundation\Domains\Company\CompanyRepository
with namespace.Let say I want to bind it to
yc
to get current class name andycn
to get current class name with namespace.How to do that?