snippets multicursor php text alignment phpstorm webstorm

multicursor - snippets phpstorm



¿Cómo alinear texto a un personaje específico en phpstorm o webstorm? (4)

Cmd + Alt + L (en Mac) o Ctrl + Alt + L (Win) y PHP Storm formateará el código según el estilo de tu Código en Configuración. PARA establecer este estilo de código, vaya a: Archivo -> Configuración -> Estilo de código -> PHP (elija aquí su idioma) -> Otro -> Alinee pares clave-valor - marque como está marcado. Y luego presione Reformatear código (Ctrl + Alt + L) y listo. Obtendrás el código, con el estilo que escribas arriba.

Tengo este texto

$test1 = ''testing1''; $test1test1 = ''testing1''; $test1test1test1 = ''testing1''; $test1 = ''testing1'';

y me gustaría alinearlo así, usando pestañas,

$test1 = ''testing1''; $test1test1 = ''testing1''; $test1test1test1 = ''testing1''; $test1 = ''testing1'';

¿Hay alguna forma de hacerlo en phpstorm o webstorm?


En PhpStorm 8 esa opción está en:

File -> Settings -> Code style -> PHP -> Wrapping and Braces -> Assignment statement


Para mí en PhpStorm 8.0.2 lo encontré aquí:

Configuración -> Editor -> Estilo de código -> PHP -> Envoltura y llaves -> Alinear asignaciones consecutivas


opción de formateo en phpstorm 8

ajustes> Estilo de código> php> Envoltura y llaves

verifique ambas opciones Alinear campos en opción y Alinear constante

¡ahora puedes obtener lo que quieres! :)

Blog de Source Jetbrains