Download from:
https://github.com/StanAngeloff/dotfiles/blob/master/.vim/after/plugin/fuzzy.vim
Install as ~/.vim/after/plugin/fuzzy.vim
.
To trigger a completion, use <C-X><C-U>
at the end of a line.
Download from:
https://github.com/StanAngeloff/dotfiles/blob/master/.vim/after/plugin/fuzzy.vim
Install as ~/.vim/after/plugin/fuzzy.vim
.
To trigger a completion, use <C-X><C-U>
at the end of a line.
<?php | |
private array $list; | |
| | |
V | |
/** | |
* @var array | |
*/ | |
private $list; | |
# ----------------------------------------------------- | |
$timezone?->getName() | |
$property->timezone?->getName() | |
| | |
V | |
(isset ($timezone) ? $timezone->getName() : null) | |
(isset ($property->timezone) ? $property->timezone->getName() : null) | |
# ----------------------------------------------------- | |
return $this->eventDispatcher = new EventDispatcher(); | |
| | |
V | |
if ($this->eventDispatcher === null) { | |
$this->eventDispatcher = new EventDispatcher(); | |
} | |
return $this->eventDispatcher; | |
# ----------------------------------------------------- | |
if isset $this->repository $this->eventDispatcher | |
| | |
V | |
if (isset ($this->repository) && isset ($this->eventDispatcher)) { | |
} |