Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Снипеты для PHP 7.x #4

Open
alexdrupal opened this issue Aug 13, 2022 · 1 comment
Open

Снипеты для PHP 7.x #4

alexdrupal opened this issue Aug 13, 2022 · 1 comment

Comments

@alexdrupal
Copy link

Добрый день

Спасибо за плагин.
Снипеты отлично работают на PHP8, но на PHP7 есть проблема с multiline # комментариями.

2022-08-13_15-42

Думаю можно добавить опцию в плагин, которая позволила бы контролировать версию PHP:

let g:sniphpets_php_version = get(g:, 'sniphpets_php_version', '8')

К сожалению я не разобрался, как в самом сниппете проверять условие и выводить разные аннотации в зависимости от значения этой глобальной переменной.
Пример:

2022-08-13_15-44

Можете помочь?

@voronkovich
Copy link
Member

@alexdrupal, боюсь, это невозможно реализовать. Ultisnips не поддерживает условные конструкции (это всё-таки не шаблонизатор).

Я могу лишь рекомендовать создать отдельный сниппет для php7 и дать ему другое имя, например: sfcommand7.

snippet sfcommand7 "Symfony / Command / Command class (PHP 7)" b
<?php`!v sniphpets#header()`

namespace `!v sniphpets#namespace()`;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class `!v sniphpets#basename()` extends Command
{
	protected function configure(): void
	{
		\$this
			->setName('app:`!v sniphpets#camel_to_snake(sniphpets#basename('Command'), '-')`')
		;
	}

	protected function execute(InputInterface \$input, OutputInterface \$output): int
	{
		${VISUAL}${0}

		return Command::SUCCESS;
	}
}
endsnippet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants