vim-php-namespace icon indicating copy to clipboard operation
vim-php-namespace copied to clipboard

PHP namespace support for VIM. Types "use" statements for you

Results 10 vim-php-namespace issues
Sort by recently updated
recently updated
newest added

This isn't necessarily a bug, as it's using vim's settings, but it's not necessarily obvious. If `set ignorecase` is on, then an include of `Foo` will also be case-insensitive and...

Can't seem to insert some use statements for classes. I have verified that they are indeed in the tags file.

One small bug I noticed: if I'm using multiple traits in a class like this: ``` class Foo { use BarTrait, FoobarTrait; } ``` I cannot import the namespace for...

Using: NeoVim version 0.2.2 init.vim config: ``` " Alphabetisize the use statements let g:php_namespace_sort_after_insert = 1 " Insert the use statement function! IPhpInsertUse() call PhpInsertUse() call feedkeys('a', 'n') endfunction autocmd...

Hi, it's fine when the class defined like `class Controller extends BaseController`; But there is an error: `Vim(ptjump):E434: Can't find tag pattern` when use full namespace like this: `class Controller...

The new sort function is great (and much easier than other solutions I've found that require selecting the lines manually), but an option to sort by line length would be...

Feature

This: ``` use App\Mailers\AdminMailer; use App\Services\{ CityRequestService, PopupEmailCreator, CityUpdatesSubscriber, EmailListSubscriber }; use Redirect; use Input; use URL; ``` Is wrongly sorted as: ``` CityRequestService, CityUpdatesSubscriber, EmailListSubscriber PopupEmailCreator, use App\Mailers\AdminMailer; use...

Feature

When the **namespace declaration** is written alongside the `

The file size generated by ctags is way bigger than that of gtags, not to mention that gtags provides more features than ctags. I finally managed to replace ctags with...

Feature

It's terrible that I have to delete both the class name and the namespace manually.