Questions tagged [emmet]

Emmet (previously Zen Coding) is a set of text editor plugins allowing for high-speed coding in HTML, XML, XSL, and other structured code formats by expanding CSS-like expressions of elements into their corresponding representation.

Emmet (previously known as Zen Coding) is a set of plug-ins for text editors that allow for high-speed coding in HTML, XML, XSL, and other structured code formats via content assist. The project was started by Vadim Makeev in 2008 and continues to be actively developed by Sergey Chikuyonok.

Emmet takes the snippets idea to a whole new level: you can type CSS-like expressions that can be dynamically parsed, and produce output depending on what you type in the abbreviation. Emmet is developed and optimized for web-developers whose workflow depends on HTML/XML and CSS but can be used with other programming languages too.

http://docs.emmet.io

741 questions
0
votes
1 answer

sublime text 2 emmet plugin issues

I just got the message of the new released plugin from Emmet in sublime text 2. I tried it out but i still get the same issue as before meaning I can't make the wrapping action work. None of the demos in the following link are working for me :…
0
votes
1 answer

Zen Coding worng abbreviations in Aptana

Hello I am using Zen Coding in Aptana, but some abbreviations are not working correctly. When I type w TAB I get white-space: instead of width: Can someone tell me how I can set up correct abbreviations?
user1073323
  • 163
  • 3
  • 14
0
votes
1 answer

Using Enmet with ERB

I'm wondering if it is possible to easily mark up ERB templates using the Enmet/ZenCoding plugin for SublimeText2. For example, you can normally do: span.goodbye{hi there!} --> tab --> hi there! Is there a way to do…
Brandon
  • 3,091
  • 2
  • 34
  • 64
0
votes
1 answer

Sublime text 2 - zen coding change key binding

I need the TAB to switch between highlights in my css snippets. I'm using css snippets and #FFF+tab => I want to change zen-coding key biding from tab to CTRL+, (comma) I've changed (the last line in default.sublime-keymap) from "tab" to…
Claudiu
  • 3,700
  • 1
  • 38
  • 35
0
votes
1 answer

Sublime Text 2 key settings override zen coding settings

I have installed zen coding in Sublime Text 2 on windows 7. But the shortcuts for html and css are not working as it works on my mac. For eg: if we expand rz, the result should be resize: but the ST2 expands it to background-size:. I have tried…
KKS
  • 3,600
  • 1
  • 27
  • 54
0
votes
1 answer

Zen Coding CSS in TextMate doesn't expand anything

I've installed … TextMate.Zen.CSS.1.3.1.zip TextMate.Zen.HTML.1.3.1.zip Zen.Coding-TextMate.v0.7.zip … and using version 1.5.11 (1635) HTML expansion seems to work fine. But no CSS abbreviation expands. In Google Code I didn't find an issue with…
suntrop
  • 775
  • 3
  • 10
  • 24
0
votes
1 answer

Display dropdown menu in zen cart

I require help of you in zen cart. i have menu like this in my project I have tho add drop-down option menu in the product and it display some the product like New Arrival product a product b like same as below i am new to the zen cart i am try…
Jalpesh Patel
  • 3,150
  • 10
  • 44
  • 68
0
votes
1 answer

Is it possible to use zen coding indexes within a parent element to apply to a child?

Say you have the zen snippet: div#container>(div.panel>h2{this is the header inside panel $})*3 it will evaluate to:

this is the header inside panel 1

Jai
  • 2,096
  • 5
  • 25
  • 37
0
votes
1 answer

Zen Code to create html layout for a sudoku solver

I'm making a sudoku solver in html/css/js the layout i'm going for is: a main container div . . . end main container div I've gotten this far in zen code div#container>input:text*81 but if I try…
Bilbo Baggins
  • 3,644
  • 8
  • 40
  • 64
0
votes
1 answer

Modifying abbreviations in Zencoding

I use notepad++ with Zen Coding. I would like to add a new abbreviation script:jquery17 which does the following
Atif
  • 10,623
  • 20
  • 63
  • 96
0
votes
1 answer

notepad++ zen coding 'wrap with abreviation'

i am using NP++ and zen coding when i try to wrap with abreviation a word, this is the result im looking for: Zynga shares opened slightly higher Friday but instead, i get this: Zynga shares opened higher Friday i…
t q
  • 4,593
  • 8
  • 56
  • 91
0
votes
1 answer

Zen Coding (Selected Text) in Aptana Studio 3

How can I do zen-coding with selected text? I was able to do it in Aptana Studio 2 but now I can't do it Studio 3.. I can type p*3, select that and run 'Expand Abbreviation' -- that works. it gives me 3 sets of p tags. But I can't select an existing…
user1146310
0
votes
1 answer

Easy way to create Zen-Coding Snippets in Sublime Text 2

Like in Eclipse or Aptana, you have a interface for create snippets and shortcuts for them. But, in Sublime Text 2, just have a .py file. Anyone know how I can do that? Sorry for my english, I'm Brazilian.
Patrick Maciel
  • 4,874
  • 8
  • 40
  • 80
-1
votes
1 answer

Some one suggested me to use VIM for html editing. I am using windows7. Does it make sense to use it?

For fast coding or zen coding some suggested me to us VIM but I dont have a mac. I am using Windows7. Can/should I switch to VIM from dreamweaver?
Imran
  • 1,094
  • 1
  • 21
  • 41
-1
votes
1 answer

what emmet shortcut to edit several elements at once

I've written my HTML in bootstrap 4 using the breakpoint of col-sm for everything. I want to edit the entire document to col-lg. Which emmet shortcut can I use to edit all at once to change everything instead of manually moving to each line to…