via tricks img from change css visual-studio

tricks - image from css



Acceso directo para comentar CSS en VS 2008 (2)

Cuando presiono Ctrl + E, C (otras variantes) estándar en VS2008 mientras edito un archivo CSS, dice que el comando no está disponible. ¿Cómo configuro un atajo para aplicar un viejo / * * / comentario simple al texto seleccionado en VS? Gracias


Dentro de Visual Studio, presione Alt-F11 para abrir la macro IDE y agregue un nuevo módulo haciendo clic derecho en MyMacros y seleccionando Agregar | Agregar módulo ...

Pegue lo siguiente en el editor de fuente:

Imports System Imports EnvDTE Imports EnvDTE80 Imports EnvDTE90 Imports System.Diagnostics Public Module CommentCSS Sub CommentCSS() Dim selection As TextSelection selection = DTE.ActiveDocument.Selection Dim selectedText As String selectedText = selection.Text If selectedText.Length > 0 Then selection.Text = "/*" + selectedText + "*/" End If End Sub End Module

Puede crear un atajo de teclado yendo a Herramientas | Opciones ... y seleccionando Teclado en la sección Entorno en la barra de navegación de la izquierda. Selecciona tu macro y asigna cualquier atajo que te guste.

También puede agregar su macro a un menú o barra de herramientas yendo a Herramientas | Personalizar ... y seleccionando la sección Macros en la navegación a la izquierda. Una vez que ubique su macro en la lista, puede arrastrarla a cualquier menú o barra de herramientas, donde su texto o icono se puede personalizar a lo que desee.


aquí hay una solución aún más simple:

Sub CommentCSS() DTE.ActiveDocument.Selection.StartOfLine(VsStartOfLineOptions.VsStartOfLineOptionsFirstText) DTE.ActiveDocument.Selection.Text = "/*" DTE.ActiveDocument.Selection.EndOfLine() DTE.ActiveDocument.Selection.Text = "*/" End Sub

puedes grabarlo tú mismo usando ctrl + shift + R

  1. coloca el cursor en la línea que quieres comentar
  2. presiona "Inicio" en tu teclado
  3. tipo /*
  4. presiona "Finalizar" en tu teclado
  5. tipo */
  6. guarda tu grabación