Giter VIP home page Giter VIP logo

Comments (13)

sergeche avatar sergeche commented on August 17, 2024

Wait for v0.7 release: sergeche/zen-coding@0eca187

from emmet.

jakearchibald avatar jakearchibald commented on August 17, 2024

This feature is great. However it would be nice if there was a lipsum generator too. Eg...

li*5>a[href]{{lipsum:6words}}

Each link would have 6 different lipsum words.

from emmet.

Integralist avatar Integralist commented on August 17, 2024

I've just built from source (following the instructions on README) but when I try the example...

p>{Click }+a{here}+{ to continue}

...and then press Ctrl+, nothing happens. Other zen commands are working but this specific text feature doesn't appear to work for me.

from emmet.

sergeche avatar sergeche commented on August 17, 2024

In which editor you have such problem?
The most recent build works fine: http://media.chikuyonok.ru/codemirror2/


Сергей Чикуёнок
http://chikuyonok.ru
[email protected]

On Tuesday, April 10, 2012 at 3:37 PM, Mark McDonnell wrote:

I've just built from source (following the instructions on README) but when I try the example...

p>{Click }+a{here}+{ to continue}

...and then press Ctrl+, nothing happens. Other zen commands are working but this specific text feature doesn't appear to work for me.


Reply to this email directly or view it on GitHub:
https://github.com/sergeche/zen-coding/issues/10#issuecomment-5043835

from emmet.

Integralist avatar Integralist commented on August 17, 2024

I'm using latest version of panic coda. I cloned the repo and compiled the coda plugin using the command provided on the readme file and it generated the relevant plugin. I installed it by double clicking in the file and coda asked me if I wanted to replace it (as I had an older version installed which I downloaded from a website as apposed to compiling it myself manually) I confirmed I wanted to replace the plugin.

Like I say it's working with other zen selectors just not the generating of text one

from emmet.

sergeche avatar sergeche commented on August 17, 2024

Looks like you've built outdate TEA for Coda. The latest version should be compiled with the Ant file: https://github.com/sergeche/zen-coding/blob/master/plugins/coda/build.xml


Сергей Чикуёнок
http://chikuyonok.ru
[email protected]

On Tuesday, April 10, 2012 at 6:23 PM, Mark McDonnell wrote:

I'm using latest version of panic coda. I cloned the repo and compiled the coda plugin using the command provided on the readme file and it generated the relevant plugin. I installed it by double clicking in the file and coda asked me if I wanted to replace it (as I had an older version installed which I downloaded from a website as apposed to compiling it myself manually) I confirmed I wanted to replace the plugin.

Like I say it's working with other zen selectors just not the generating of text one


Reply to this email directly or view it on GitHub:
https://github.com/sergeche/zen-coding/issues/10#issuecomment-5046972

from emmet.

Integralist avatar Integralist commented on August 17, 2024

@sergeche thanks for the update. Do you have any instructions on how to use Ant - I've not used it before so I'm not sure of the process. A quick step-by-step would be very helpful. Thanks!

from emmet.

sergeche avatar sergeche commented on August 17, 2024

Well, right now the build step is not very good and may require some additional dependencies and preferences. But basically it should look like this:

  1. Install Apache Ant (requires Java): http://ant.apache.org/
  2. Clone Zen Coding project with all submodules (required): http://github.com/sergeche/zen-coding
  3. In console, go into main Zen Coding project folder and run
    ant coda_bundle

Сергей Чикуёнок
http://chikuyonok.ru
[email protected]

On Tuesday, April 10, 2012 at 8:07 PM, Mark McDonnell wrote:

@sergeche thanks for the update. Do you have any instructions on how to use Ant - I've not used it before so I'm not sure of the process. A quick step-by-step would be very helpful. Thanks!


Reply to this email directly or view it on GitHub:
https://github.com/sergeche/zen-coding/issues/10#issuecomment-5049486

from emmet.

Integralist avatar Integralist commented on August 17, 2024

@sergeche thanks, I'll give that a bash (no pun).

from emmet.

Integralist avatar Integralist commented on August 17, 2024

@sergeche sorry, only just gotten round to testing this.

I cloned the repo which consists of...

$ ls -l
total 32
-rw-r--r--   1 <user>  staff  5852 12 Apr 10:46 README.textile
drwxr-xr-x   2 <user>  staff    68 12 Apr 10:46 ant-tools
-rw-r--r--   1 <user>  staff  1019 12 Apr 10:46 build.properties
-rw-r--r--   1 <user>  staff  2514 12 Apr 10:46 build.xml
drwxr-xr-x  15 <user>  staff   510 12 Apr 10:46 javascript
drwxr-xr-x  16 <user>  staff   544 12 Apr 10:46 plugins
drwxr-xr-x   4 <user>  staff   136 12 Apr 10:46 python

I then execute ant coda_bundle which throws the following error...

Buildfile: /Users/<user>/Desktop/zen-coding/build.xml

BUILD FAILED
/Users/<user>/Desktop/zen-coding/build.xml:4: Cannot find /Users/<user>/Desktop/zen-coding/ant-tools/webtasks.xml imported from /Users/<user>/Desktop/zen-coding/build.xml

...any ideas?

from emmet.

sergeche avatar sergeche commented on August 17, 2024

Try to remove <import file="${basedir}/ant-tools/webtasks.xml"/> on line 4 of build.xml

from emmet.

Integralist avatar Integralist commented on August 17, 2024

@sergeche no luck. There were 4 build.xml files that errored:

  • /zen-coding/build.xml
  • /zen-coding/plugins/textarea/build.xml
  • /zen-coding/plugins/codemirror/build.xml
  • /zen-coding/plugins/codemirror2/build.xml

...after fixing those files by removing said line, it then errors with:

$ ant coda_bundle
Buildfile: /Users/<user>/Desktop/zen-coding/build.xml
coda_init:
    [mkdir] Created dir: /Users/<user>/Desktop/zen-coding/build/plugins/Coda

coda_copy_files:

BUILD FAILED
/Users/<user>/Desktop/zen-coding/plugins/coda/build.xml:9: /Users/<user>/Desktop/zen-coding/plugins/tea-for-coda does not exist.

Total time: 0 seconds

from emmet.

sergeche avatar sergeche commented on August 17, 2024

The build process is pretty bad right now, it will be updated in next release.
Right now, you should try to check out tea-for-coda project https://github.com/sergeche/tea-for-coda into zen-coding/plugins


Сергей Чикуёнок
http://chikuyonok.ru
[email protected]

On Friday, April 13, 2012 at 8:01 PM, Mark McDonnell wrote:

@sergeche no luck. There were 4 build.xml files that errored:

  • /zen-coding/build.xml
  • /zen-coding/plugins/textarea/build.xml
  • /zen-coding/plugins/codemirror/build.xml
  • /zen-coding/plugins/codemirror2/build.xml

...after fixing those files by removing said line, it then errors with:

$ ant coda_bundle
Buildfile: /Users/<user>/Desktop/zen-coding/build.xml
coda_init:
[mkdir] Created dir: /Users/<user>/Desktop/zen-coding/build/plugins/Coda

coda_copy_files:

BUILD FAILED
/Users/<user>/Desktop/zen-coding/plugins/coda/build.xml:9: /Users/<user>/Desktop/zen-coding/plugins/tea-for-coda does not exist.

Total time: 0 seconds

Reply to this email directly or view it on GitHub:
https://github.com/sergeche/zen-coding/issues/10#issuecomment-5117724

from emmet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.